A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
=IF(OR(ISBLANK(A1),ISBLANK(B1)),"",IF(OR(A1<5,B1<5),"X",IF(AND(A1>=5,B1>=5),"OK","")))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello. I am trying to return 3 different condition for multiple cell. Example, if cell A1 or B1 less than 5, return in C1 "X", if both of them more than 5, return in C1 "OK". But if the cell is blank, return in C1 also blank. So far I only manage to write until "X" and "OK" part. This is how I wrote it, =IF(OR(A1<5,B1<5),"X","OK". I try to use ISBLANK function but I couldn't find where to put ISBLANK in the function. I also try use IFS function but it turn out error.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Thank you so much. I appreciate your help.