I am fairly new to using intricate formulas in smarsheet as a headsup to a probably easy fix. I wanted to be able to make blank/ unchecked columns when there isnt any date or risk status mark in my other columns. Right now I have a risk status column that depends on dates in the Abstract Due Date column. The Done column depends on the grey ball in Risk Status, meaning a passed due Abstract Due Date. If the abstract has passed, the done status is Checked. (I havent set up if it hasnt passed, there is no check mark and thats probably part of the problem). Here are the formulas to hopefully make this clear
Risk Status: =IF([Abstract Due Date]@row >= TODAY(60), "Green", IF([Abstract Due Date]@row >= TODAY(30), "Yellow", IF([Abstract Due Date]@row >= TODAY(1), "Red", IF([Abstract Due Date]@row <= TODAY(), "Gray"))))
Done: =IF([Risk Status]@row = "Gray", 1)
What should I set up in the done column formula that wont trigger a check mark when an abstract hasnt past yet. Also I want both columns to not do anything if there isnt any date in the Abstract Due Date column. I tried a IFBLANK formula, but keep getting "unparseable"