I need help with using symbols with formulas. The column property is set to symbols. My current working formula is:
=IF(TODAY() > [Remedy Deadline]@row, "Red", IF([Finding Status]@row = "Finding is Closed", "Green", "Yellow"))
However, my first IF condition needs to satisfy two conditions:
(1) (TODAY() > [Remedy Deadline]@row AND
(2) [Finding Status] @row = "Finding is Open"
I thought I was using good syntax with the following IF/AND statement:
=IF(AND((TODAY() > [Remedy Deadline]@row , [Finding Status] = “Finding is Open"), "Red", IF([Finding Status]@row = "Finding is Closed", "Green", "Yellow"))
This simply yields the dreaded "unparseable" without much insight as to what is wrong.
Any suggestions?