I have a sheet that looks for errors in a field, then populates a status if it finds those errors. For example:
=IF(LEN(Body@row) < 1, "RED", IF(OR(CONTAINS("Rejected: 0", Body@row)) = true, "Green", "Yellow"))
However, if the cell is null, it reads "#INVALID VALUE". In addition to the formula above, I would like to include if the cell is null, status is "Pending".
How would I do that? Thanks so much.