View Single Post
  #2   Report Post  
Max
 
Posts: n/a
Default

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

--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--
"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?