IF statement

J

Jo

Hi
I cannot get the following to return a true value.
=IF(I20="POS","t","f")
Do I need to do this in VBA or can I do this as a
worksheet function?
Thanks
Jo
 
R

Ron Rosenfeld

Try this.......

=IF(I20="POS",TRUE,FALSE)

Vaya con Dios,
Chuck, CABGx3


If all you want as a result is TRUE or FALSE, then the IF function may be
superfluous.

You get the same result with the formula:

=I20="POS"

Of course, the result is a Boolean and not a text string.


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top