#UNPARSEABLE error on trying to return a "red", yellow", "green" dot symbol
I'm trying to get Smartsheet to return a "red", yellow", "green" dot symbol to track the health of my data.
Right now, my formula looks like this: =IF(COUNTBLANK([New Project #]1:VOLUMES1) = 0,"GREEN",IF(COUNTBLANK([New Project #]1:VOLUMES1)<7,"YELLOW","RED"),"RED")
where: [New Project #]1:VOLUMES1 contains 15 cells in a row to evaluate data from.
I want the formula to return a green dot symbol if 0 of the 15 cells are blank, a yellow dot symbol if less than 7 cells are blank, and a red dot symbol if neither one of those two options are true.
Right now, I'm getting an #UNPARSEABLE error. Please help if you can.
Best Answer
-
@Sarah Watts I cannot find
COUNTBLANK
in the list of available functions. So, likely that is what is causing the parseable error.I think you want simply
COUNT
. For example:=IF(COUNT([Tractor Trailer]2:[Percent Customer]2) > 0, "NOT EMPTY", "EMPTY")
Answers
-
@Sarah Watts I cannot find
COUNTBLANK
in the list of available functions. So, likely that is what is causing the parseable error.I think you want simply
COUNT
. For example:=IF(COUNT([Tractor Trailer]2:[Percent Customer]2) > 0, "NOT EMPTY", "EMPTY")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 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!