3 possible values

S

Smokey_Vol

=IF(F85>F84,"Winner","Loser")---- this is the formula that I'm currentl
using, but if a value has not yet been entered into cells F85 or F84 i
will still give me a Loser value. I understand why it is doing, but ho
can I have it put N/A if both values after still empty? Hopefully
explained it good enough.

_________
-Thanks
JeremyA
 
R

Ron Coderre

Try this:

=IF(OR(ISBLANK(F84),ISBLANK(F85)),"NA",IF(F85>F84,"Winner","Loser"))

Does that help?

Regards,
Ron
 
R

Ron Coderre

Another option:

=IF(COUNT(F84:F85)<2,"NA",IF(F85>F84,"Winner","Loser"))

Helping yet?

Regards,
Ro
 
S

Smokey_Vol

Ron said:
Try this:

=IF(OR(ISBLANK(F84),ISBLANK(F85)),"NA",IF(F85>F84,"Winner","Loser"))

Does that help?

Regards,
Ron


It worked. Thanks


Now I'm just trying to understand how
 
S

Smokey_Vol

Well I take that back.......... I getting N/A when it should be winner
and/or loser.
 

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