Formula to Return Symbols

I am utilizing a formula to return symbols based on a inputs from another sheet. Here is the formula:
=IF([Status Indicator]@row = "1", "Yellow") + IF([Status Indicator]@row = "2", "Green") + IF([Status Indicator]@row = "3", "Red") + IF([Status Indicator]@row = "4", "Blue")
The yellow and green symbol are showing as intended, but the Red and Blue symbols aren't showing and returning the following values: 0Red and 0Blue.
I checked to make sure I was using the right column type. Any suggestions on how to fix? Thanks.
Best Answer
-
If it is only supposed to be showing one color at a time, you would want a nested IF statement instead.
=IF([Status Indicator]@row = "1", "Yellow", IF([Status Indicator]@row = "2", "Green", IF(.................
Answers
-
If it is only supposed to be showing one color at a time, you would want a nested IF statement instead.
=IF([Status Indicator]@row = "1", "Yellow", IF([Status Indicator]@row = "2", "Green", IF(.................
-
Thanks so much, that worked!
Help Article Resources
Categories
Check out the Formula Handbook template!