I want to create a function that basically says
If, the Due Date is is more than 14 days past due I want red
If " " is less than 14 yellow
On date green
This is what I have so far
=IF([Due Date]@row < Today(-14), "Red"), IF([Due Date]@row < Today(-13), "Yellow"), IF([Due Date]@row, TODAY(), "Green")))
Getting a #UNPARSED error. Can anyone help?