View Single Post
  #5   Report Post  
CLR
 
Posts: n/a
Default

=IF(LEFT(A2,1)="v","OK","Not OK")

Vaya con Dios,
Chuck, CABGx3


"September21" wrote in message
...
Hi,
I want to know how do I check if the text string starts with a specific
character in if statement.

I used ...
=IF(ISNUMBER(FIND("v",'A2)),"OK","Not OK")

But, the result for this argument returns the text string which includes

"v"
anywhere in the text string.
I just want to the text string which begins with "v".

How can I make it?