I've created a formula based on some suggestions here where I want to track the status of tasks
There are 3 columns, CREATED, DUE DATE and COMPLETED (this is a check box)
I would like to have the symbols change
if a date is between today and the due date = green
if the date is 2 days before the due date from today, then turn yellow
if the date is on or past due date from today = red
if completed column is checked, then turn gray
IF([DUE DATE]@row <= TODAY(), "Red", IF([DUE DATE]@row > TODAY(), "Green", IF([DUE DATE]@row = TODAY(), "Yellow")))
any help would be greatly appreciated!