Hi @Anonymous ,
What permission do you want to use? Do you have a list of users that you want to hide the controls from?
Add an O365 Connector:
You can try adding this to your AppStart:
Set(MyProfile,Office365Users.MyProfile());
ClearCollect(AllowedUsers,"hari@example.com"); //Collects Allowed Users
Unlock the Control that you want to hide and change this Visible Property to:
If(MyProfile.Mail in AllowedUsers.Value,true,false);
----------------------------------------------------------------------------
Thanks,
K-A-R-L
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you thought this post was helpful, please give it a Thumbs Up.