Hi
I have a strange but valid question from a user.
When my form is submitted, it triggers an email to Approver1, if Approver1 deletes the email, there is no way for them to get to the form for approval.
I have a button on my form, which is for 'my requests' and the DisplayMode I have set to this and when clicked navigates them to the my ViewScreen, I need this to be clickable for up to 5 users. is there a better way of doing this:
If(CountRows(Gallery2.AllItems)=0,DisplayMode.Disabled,DisplayMode.Edit)
Ideally do not want the button to be cickable if the user logged in does not have anything to view in the ViewScreem which contains my gallery. I tried something like this and a few variation but doesn't work, can someone help please:
If(And(CountRows(Gallery2.AllItems Or VarUser=DataCardValue33.Selected.Email)=0,DisplayMode.Disabled,DisplayMode.Edit)