English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Let's say I'm using IF formula for greater than/less than.
Here's my formula: =IF(A4B4, "N", IF(A4=B4, "Y")))
This works, However, the problem is, if there is no vaule in the cell, it automatically assumes it is less than the value in the B column. I would like it to have a different outcome if the cell is left blank. How can I go about this?

2007-01-28 09:30:48 · 1 answers · asked by sensistud 1 in Computers & Internet Software

1 answers

=IF(OR(ISBLANK(B1),ISBLANK(C1)),"NA",IF(B1>=C1,"Y","N"))

If yahoo truncates the message, then join those below up
=IF(OR(ISBLANK(B1)
,ISBLANK(C1)),"NA",
IF(B1>=C1,"Y","N"))

2007-01-28 14:36:14 · answer #1 · answered by unnga 6 · 0 0

fedest.com, questions and answers