RYGB BAlls with B = empty cell
I have a basic formula I can't get to return a B ball when there is an empty cell.
=IF(Count@row = 0, "Green", IF(Count@row > 0, "Red", IF(Count@row = "", "Blue")))
Best Answers
-
Move that argument to the beginning.
=IF(Count@row = "", "Blue", IF(Count@row = 0, "Green", IF(Count@row > 0, "Red")))
-
Try this one instead...
=IF(Count@row = 1, "Green", IF(Count@row = 0, "Blue", "Red"))
Answers
-
Move that argument to the beginning.
=IF(Count@row = "", "Blue", IF(Count@row = 0, "Green", IF(Count@row > 0, "Red")))
-
Thank you Paul. That did the trick. I'm new at this and am learning :). I have another quick question:
=IF(Count@row = 0, "Blue", IF(AND(Count@row >.01, count@row <1, "Red", IF(Count@row = 1, "Green"))))
0=Blue
Between .01-.99 =Red
1=Green
-
Try this one instead...
=IF(Count@row = 1, "Green", IF(Count@row = 0, "Blue", "Red"))
-
You're great! Thank you.
-
Help Article Resources
Categories
Check out the Formula Handbook template!