I have a formula which you guys helped with previous which after using for a few months need to tweek as it not quite working. So the formula is set to to change the status box depending on a set of rules and used for an internal audit planner.
The issue; The formula is a little broken in that in order for the 'outstanding' status to appear there must be a date in the 'scheduled date' field, this means that those audits which are yet to be scheduled and have gone overdue remain as 'awaiting scheduling' rather than tripping over into 'overdue' once the 'proposed audit month' has passed.
Also have added a 'audit cancelled' column as a checkbox and would like this to change the 'audit status' column to 'cancelled' when the box is checked, when i have added this i get various errors so would love some assistance with this to please.
The current formula as follows;
=IF(AND([IMS audit]@row = true, [IMS Audit Scheduled Date]@row = ""), "Awaiting Scheduling",
IF(AND([IMS audit]@row = true, [IMS Audit Scheduled Date]@row <> "", [IMS Audit Completed Date]@row = "", [IMS Audit Proposed Audit Month]@row < TODAY()), "Overdue",
IF(AND([IMS audit]@row = true, [IMS Audit Scheduled Date]@row <> "", [IMS Audit Completed Date]@row = ""), "Booked",
IF(AND([IMS audit]@row = true, [IMS Audit Scheduled Date]@row <> "", [IMS Audit Completed Date]@row <> ""), "Completed",
The bit i tried to add and failed...
IF([IMS Audit Cancelled]@row = true, "Cancelled")))))
Thanks in advance to all you guys.