Forum Discussion
RodL1966
Jul 09, 2018Copper Contributor
Leave adjacent cell blank if formula cell is blank
Good day Excel Gurus! I have the following formula in a cell I've titled "Status": =IF((AND(B24>=92,B24<=99)),"Within Tolerance","Out of Tolerance") To finish it I want the "Status" cell to...
- Jul 09, 2018
Hi Rod,
Please use this:
=IF(OR(B24="",ISTEXT(B24)),"",IF((AND(B24>=92,B24<=99)),"Within Tolerance","Out of Tolerance"))
Manya Garg
Microsoft
Jul 09, 2018Rod,
You can also try:
=IF(ISNUMBER(B24), IF((AND(B24>=92,B24<=99)),"Within Tolerance","Out of Tolerance"), "")
That will cover everything in case the value is not a number including spaces, text, errors etc