Hi Experts,
I need a formula on a button that will take the user to the correct screen depending on an IF.
If the users email address appears in the 1stApprover column of a sharepoint list & the ChangeStatus of the row item is set to "Submitted" then navigate to MyApprovals screen. I then want the same for 2ndApprover but to navigate to MyApprovals2 screen. Below is where my mind has gone with this code so far but i've made a mistake somewhere along the way, please help
If(ChangeMaster, User().Email in '1stApprover') && ((ChangeStatus="Submitted");Navigate(MyApprovals,Cover)
OR
If(ChangeMaster, User().Email in '2ndApprover') && ((ChangeStatus="1st Stage Approved");Navigate(MyApprovals2,Cover)
Thanks in advance!