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.