Hi I have set up an onstart in powerapps but when I add multiple emails I dont see the buttons.
Set(varUserEmail, User().Email);
Set(varIsFleet, varUserEmail = ("email1@email.com"; "email2@email.com")
But when I add more than 1 email the submit button wont show anymore.
I know I am doing something wrong. Please help.
Thanks!
Solved! Go to Solution.
Try using In operator instead of =.
Set(varUserEmail, User().Email);
Set(varIsFleet, varUserEmail in Concatenate("email1@email.com", "email2@email.com"));
Hi @djreyes1110 ,
Are you trying to compare VarUserEmail (Which is basically current user) is in the list of {"Email1";"EMail2";{Email3"... So on}?
Not to compare but only those email that are added can access the button in powerapps.
Try using In operator instead of =.
Set(varUserEmail, User().Email);
Set(varIsFleet, varUserEmail in Concatenate("email1@email.com", "email2@email.com"));
User | Count |
---|---|
255 | |
112 | |
92 | |
48 | |
38 |