my default cell value is zero that value look up with other sheet cell Reference.
all there cell match with other sheet reference.
J2=J3+J4
=IF(J2=J3+J4, "SUCCESS",
IF(J2=J3=J4="0", "WAITING FOR VALUE",
IF(J2=" "&J3=" "&J4=" ", " ", "UNSUCCESS")))
so by default all the cell value is cell i added the above formula but its not showing the if value is zero “waiting for value”
Nested IF Statements
- If all are blank or
Nothing
thenNothing
(""
). - If any evaluates to zero (blank or 0) then
"WAITING FOR VALUE"
. - If the expression evaluates to
TRUE
then"SUCCESS"
. - Otherwise,
"UNSUCCESS"
. - Note the importance of the order of the statements. Consider the following:
- If all are blank or zero, the expression also evaluates to
TRUE
. - If e.g. cell
J2
is blank thenJ2=0
evaluates toTRUE
.
- If all are blank or zero, the expression also evaluates to
=IF(COUNTBLANK(J2:J4)=3,"",
IF(OR(J2=0,J3=0,J4=0),"WAITING FOR VALUE",
IF(J2=J3+J4,"SUCCESS","UNSUCCESS")))
=IF(AND(J2=J3+J4, J2<>0, J3<>"", J4<>""), "SUCCESS",
IF(OR(J2=0, J3=0, J4=0), "WAITING FOR VALUE", "UNSUCCESS"))
please check this answer
Should be
IF(AND(J2=0,J3=0,J4=0), ...
andIF(AND(J2=" ",J3=" ",J4=" "), ...