I am working on a formula for:
1) If cell is empty = Yellow
2) If cell is between -20 to 20 = Green
3) Otherwise = Red
How should I write this formula?
I am able to get the formula right if it is simpler as follows:
1) If cell is empty = Yellow
2) If cell is 0 = Green
3) Otherwise = Red
=IF(ISBLANK([Cell]@row), "Yellow", (IF([Cell]@row = 0, "Green", "Red")))
Appreciate assistance. Thank you.