View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Fred Smith[_4_] Fred Smith[_4_] is offline
external usenet poster
 
Posts: 2,389
Default Reconize the first digit only

Try:

=if(left(e3,1)="4","Wiri","")

Regards,
Fred.

"Steved" wrote in message
...
Hello from Steved

Please how do I ask the below to except the first digit in this case
"Wiri"

for example 4111, 4521, 4321, 4976 and so on, will return "Wiri".

=IF(E3=4051,"Wiri","")

Thankyou