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 :

SEARCH BLOGS :

FOLLOW CLOUDFRONTS BLOG :


Secured By miniOrange