Hello, how can I make a field only visible to 10 people? Do I need to create a contact list basing on their email address?
Thank you!
Solved! Go to Solution.
Try something like this instead:
If(!IsBlank(LookUp(AccessControl, Title = User().Email)), Set(varuseremail, true)
I'm assuming the Title column is where the user's email is stored? Watch your syntax, too; there's some parenthesis in the wrong spot.
That's one way to do it, and it's more manageable if that list of 10 people changes frequently (as opposed to hard-coding it into a formula). There's lots of ways to accomplish this!
Add the users to a list with their emails, then you can do something OnAppStart that sets a variable based on the current user:
If(CountRows(Filter(ListName, User().Email=EmailColumn))>0, Set(varVisible, true))
Then set the Visible property of that field equal to varVisible.
Im getting an error. My formula is below:
!IsBlank(LookUp(AccessControl, Title = varuseremail).Title), Set(varuseremail), true))
Please help!
Try something like this instead:
If(!IsBlank(LookUp(AccessControl, Title = User().Email)), Set(varuseremail, true)
I'm assuming the Title column is where the user's email is stored? Watch your syntax, too; there's some parenthesis in the wrong spot.
Thank you!
I need to add this formula ONSTART right: If(!IsBlank(LookUp(AccessControl, Title = User().Email)), Set(varuseremail, true)
Then on the field that I would like to be visible to few people i need to add varuseremail under variable?
Which I did but still the field is still visible and theres no error message.
I got it! Thank you! my variable had a problem!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
186 | |
52 | |
51 | |
36 | |
32 |
User | Count |
---|---|
284 | |
97 | |
89 | |
82 | |
77 |