Hey guys,
I have a cell called ‘Status’ that works well and, as an event approaches, it changes from Pending, Action Now, Due Today and Overdue (referenced to a date). Then when I complete the action and I type ‘100’ to signify 100% complete (and in another cell it places a nice emoji check mark). The thing is that when the cell gets ‘100’ or an emoji check mark, I’d like the ‘Status’ cell to now be filled with ‘Completed’ (instead of still saying 'Pending, Action now etc…).
What code do I add to the line below to get this to happen?
IF({Days to Go} =0, “ :high_brightness: DUE TODAY:high_brightness:”, IF({Days to Go} <0, “ :warning: OVERDUE:warning:”, IF({Days to Go} <=14, “ :exclamation: ACTION NOW:exclamation:”,“ :zzz: PENDING:zzz:”)))
If I just add IF({Progress} = 100, “Completed”) and then save, it just removes the line…
Please help hugs