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.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!