I want to change the name of a task depending on the status of an approval request.
IF ([Assigned To approval]8 is either blank or "Submitted" I want the task name to say "Attach Document Here"
IF ([Assigned To approval]8 is accepted, I want the task name to say "Invitation: Review Document"
IF ([Assigned To approval]8 , I want the task name to say "Invitation Declined"
I had this working when i only had two conditions, but cant get it to work with one function for all the above.
=IF([Assigned To approval]8 = "Approved", "Invitation: Document for Review", IF([Assigned To approval]8 = Declined, "Invitation Declined"), IF([Assigned To approval]8 = "Submitted", ="Attach Document Here", IF([Assigned To approval]8 = "", = "Attach Document Here")))