I need to add another element to the following formula. The below formula works beautifully, however now I need to look at another column to see if there is a date displayed and if so (not blank) then display the word "Termed".
Current formula:
=IF(AND([Trailing 24M ratio]@row < 1, [Trailing 12M ratio]@row >= 0.9), "Yellow with above 90% in last 12 mths", IF([Trailing 24M ratio]@row >= 1.2, "STAR", IF([Trailing 24M ratio]@row >= 1, "GREEN", IF([Trailing 24M ratio]@row >= 0.8, "YELLOW", "RED"))))
Trying to add this:
IF(NOT(ISBLANK([Term Date]@row), "Termed'))))