Hello Smartsheet World,
I am trying to fix a formula to give me the most recent status given in a collection of columns. for some reason the last column is showing as Approved even though it is labeled Pending review. the rest of the formula works as needed.
The formula is as follows:
=IF([Level 4 Approval]@row <> "", "Approved ", IF([Level 4 Approval]@row = "Pending Review", "Awaiting Approval from Finance", IF([Level 4 Approval]@row = "Declined", "Declined by Finance", IF([Level 3 Approval]@row = "Pending Review", "Awaiting Approval from Program Lead", IF([Level 3 Approval]@row = "Declined", "Declined by Program Lead", IF([Level 2 Approval]@row = "Pending Review", "Awaiting Approval from Clin Dev Lead", IF([Level 2 Approval]@row = "Declined", "Declined by Clin Dev Lead", IF([Level 1 Approval]@row = "Pending Review", "Awaiting Approval from Clin Ops Director", IF([Level 1 Approval]@row = "Declined", "Declined by Clin Ops Director", IF([Outsourcing Confirmation]@row = "Pending Review", "Awaiting Outsourcing Confirmation", IF([Outsourcing Confirmation]@row = "Declined", "Declined by Outsourcing", IF([Outsourcing Confirmation]@row = "", "Awaiting Outsourcing Confirmation"))))))))))))