Hide certain Field of the form depending on Security Role of the User using PowerApps. | CloudFronts

Hide certain Field of the form depending on Security Role of the User using PowerApps.

Introduction:

In this blog, we will learn how to hide fields from the form based on the Security Role of the Logged in User.

Use Case:

We have a requirement where there are some Fields in the form, which should be hidden to the users who does not have the Security Role as Manager.

Steps:

1. This is the form of Quote Product. We want to hide the Price Overriden field from the form to certain Users.

2. To hide the field, click on the DataCard.

        Visible property of the DataCard:

         Set  Price Overridden_DataCard.Visible =  If(LookUp([@'Security Roles'],Name = "Manager",Role) in Concat(LookUp([@Users],'Full Name' = User().FullName).'Security Roles(systemuserroles_association)',Role & ";"),true,false)

 

Conclusion:

Hope the above Blog helps you to hide fields from the form based on the Security Role of the Logged in User.


Share Story :

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close