Hello,
Situation:
Trying to filter a dropdown based on user email inside a gallery, but only have them see certain values.
Content:
I have 2 sp lists. First list contains my product values and the 2nd list contains access values. I keep them separate as part of my security barriers. The 1st sp list contains the dropdown values that have 20 items to select.
Source:
// This approach allows users to see only available values instead of all of them
// There is a total of 20 values to choose from, below will only filter 5 out of the 20
If(User().Email in 'SP.2ACCESS'.USER,Filter('SP1',Dropdown.Value = "115 A" Or Dropdown.Value = "115 B" Or Dropdown.Value = "115 C" Or Dropdown.Value = "115 D"))
Issue:
The provided source works for all users, which is ok, but I'm looking to tailor it so that certain users can see all the values or specific values.
Thoughts?