If(User().Email <> "email1" ||
User().Email <> "email2" &&
DataCardValue17_1.Selected.Value = "4 - Confirmed",
Patch(BIS_CUSTOMER, {ID:Gallery7.Selected.ID}, {Request_x0020_Status:{Value:"3 - Pending"}}));
This works for patching the field correctly but it does it in all true or false cases. I have removed all the other code so I can focus just on what I have above.
I did some other testing and the If statement works fine when I remove the Patch and replace it with something else. If I replace the Patch with Navigate(Screen1) it will or won't navigate depending on the outcome of the Logical Test in the If statement. With the Patch statement it always executes regardless of the Logical Test results.