Hi everyone,
I need some help with troubleshooting an issue please.
I have a user, who is able to access my canvas app no problem, I have them listed as an approver in 1 form, but when they try to navigate to the approver screen, they are unable to so, clicking the next button nothing happens. This is what I have tried:
Checked that their email address matches by placing a label on the screen showing the logged in users email.
Added the user as an approver on another form, again they receive an email notifying them of this action, so the username/email are correct, but again they cannot navigate to the correct screen (and the way I have set up is only an approver can navigate to the approver screen).
Tested with other users, who can successfully navigate to the approver screens if they are named as the approver.
It appears it's linked to this user, but it isn't obvious what else to check to fix this issue
Help with this will be appreciated
This is my code OnSelect of my Next button, the user entered in both DataCardValue81 and dataCardValue64 can both navigate to Screen1 and Screen3, so there are no issues with any of those fields:
If(VarUser = DataCardValue81.Selected.Email, Navigate(Screen1, Fade),
If(VarUser = DataCardValue65.Selected.Email, Navigate(Screen2, Fade),
If(VarUser = DataCardValue64.Selected.Email, Navigate(Screen3, Fade),
If(VarUser = DataCardValue68.Selected.Email, Navigate(Screen4, Fade),
If(VarUser = DataCardValue69.Selected.Email, Navigate(Screen5, Fade),
If(And(VarUser = "email1.uk" || VarUser = DataCardValue90_1.Selected.Email || VarUser = "email2.uk"),
If(!IsBlank(DataCardValue81.Selected.Email), Navigate(Screen1,Fade),
If(!IsBlank(DataCardValue65.Selected.Email), Navigate(Screen2, Fade),
If(!IsBlank(DataCardValue64.Selected.Email), Navigate(Screen3, Fade),
If(!IsBlank(DataCardValue68.Selected.Email), Navigate(Screen4, Fade),
If(!IsBlank(DataCardValue69.Selected.Email), Navigate(Screen5, Fade),
Notify("No approvers have been added", NotificationType.Error)
)))))))))))
if anyone can help me further troubleshoot my problem please?
Thanks