I'm new to the community and frankly new to Smartsheets... I'm building some RYG indictors to give a quick visual indicator when a task is at "risk".. my nest IF statement is set to track a task against TODAY() - Finish... ie the closer the Finish date comes to Today's date, the higher the risk. My challenge is the Green symbol disappears when Complete hits 100%, regardless of the TODAY() - Finish number. How do I keep the Green symbol showing even if the Complete column reaches 100%?
=IF(Complete2 <> 1, IF(TODAY() - Finish2 > -2, "Red", IF(TODAY() - Finish2 > -4, "Yellow", "Green")))