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!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!