Excel How to use the Excel IF function

Joined
Aug 21, 2017
Messages
3
Reaction score
1
Im trying to have the if function say that F20 and G20 is blank AND H20 has an X then this box = Yes
i cant for the life of me figure this out. help pls

thanks
 
Joined
Aug 21, 2017
Messages
3
Reaction score
1
closest i got is this
=CONCATENATE(IF(F20="N",IF(G20="N", IF(H20="x", "Yes ", "No"))))

F20: N G20:N H20:X = Yes
but if it say
F20:X G20:X H20:X = FALSE -- i want it to say No
F20:N G20:X H20:X = FALSE
F20:X G20:N H20:X = FALSE

to clarify i want it to say F20 N G20 N H20 X = Yes otherwise NO.
 

Ian

Administrator
Joined
Feb 23, 2002
Messages
19,873
Reaction score
1,499
Are you saying that you only want the cell to say "Yes" only when F20 and G20 are empty and H20 = "X"? Under any other condition it'll be "No"?

If so, try this:

=IF(F20="",IF(G20="",IF(H20="x","Yes","No"),"No"),"No")
 

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