I'd like my output cell to show "Success" / "Not quite there" based on 3 cells:
- Blank / not blank
- Yes / No
- Yes / No
My issue is with combining the "isblank" in the "IF".
The below formula is the closest I've gotten and it's not working -
=(if(and(E3<>,F3="Yes",G3="Yes"),"Success!","Not quite there"))
Would love your advice!
CodePudding user response:
try:
=IF((E3="")*(F3="yes")*(G3="yes"); "Success!"; "Not quite there")
or:
=IF((E3<>"")*(F3="yes")*(G3="yes"); "Success!"; "Not quite there")
for array use:
=ARRAYFORMULA(IF((E3:E="")*(F3:F="yes")*(G3:G="yes"); "Success!"; "Not quite there"))
if you need OR logic replace *
with
example:
=IF((E3="")*((F3="yes") (G3="yes")); "Success!"; "Not quite there")