I am utilizing the following formula to return a value based on the values in my columns:
=IF(AND([Work Needed]@row = false, [Scheduled Inspection Date]@row > TODAY()), "Scheduled", IF(AND([Work Needed]@row = true, [Scheduled Inspection Date]@row < TODAY()), "In Progress", IF(AND([Work Needed]@row = false, [Scheduled Inspection Date]@row < TODAY(7)), "Completed", IF(AND([Work Needed]@row = false, [Scheduled Inspection Date]@row < TODAY(7)), "Completed"))))
I would like to add "Not Scheduled" if the Work Needed Column is false and the Scheduled Inspection Date column is blank. I have been at it for hours with no solution. Any help is greatly appreciated in advance!