Good Evening,
I have 3 page.
1 page with 1 button saying "LOGIN"
1 page which is the success authentification
1 page which is the fail authentification.
On my login button OnSelect I have the following : If(IsBlank(LookUp(Permissions, Name = User().Email )), Navigate('Auth-Success-Screen'), Navigate('Auth-Error-Screen'))
The return value is always False but when I look at both field they are exactely the same.
The Name colomn type is ; TEXT.
Thank you,
Solved! Go to Solution.
Hi @mpesant ,
A few things
So try this
Set(varUser,User().FullName);
If(
!IsBlank(
LookUp(
Permissions,
Name = varUser
).Name
),
Navigate('Auth-Success-Screen'),
Navigate('Auth-Error-Screen')
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @mpesant ,
A few things
So try this
Set(varUser,User().FullName);
If(
!IsBlank(
LookUp(
Permissions,
Name = varUser
).Name
),
Navigate('Auth-Success-Screen'),
Navigate('Auth-Error-Screen')
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
User | Count |
---|---|
195 | |
123 | |
86 | |
48 | |
40 |
User | Count |
---|---|
280 | |
165 | |
139 | |
80 | |
76 |