IF function question

How would I write an if statement for a symbol column based on what I have in a stage column? Ex. IF Stage column says Complete= blue, If On Hold = red, If any of these: Not Started, Pre-Install QC Survey, Pending Install IH, Pending Install BP, Post-Install QC, Follow-up =green, to show in the Status (symbol) column?
Best Answer
-
Try this: =IF(ISBLANK([Stage Column]@row), "", IF([Stage Column]@row = "Complete", "Blue", IF([Stage Column]@row = "On Hold", "Red", "Green")))
You didn't have a rule for Yellow so I've left that out and I added in if Status is blank, but you can take that out if you don't need it.
Answers
-
Try this: =IF(ISBLANK([Stage Column]@row), "", IF([Stage Column]@row = "Complete", "Blue", IF([Stage Column]@row = "On Hold", "Red", "Green")))
You didn't have a rule for Yellow so I've left that out and I added in if Status is blank, but you can take that out if you don't need it.
-
Thank you @Nic Larsen !
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 449 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!