Announcements
Best regards, Valantis
✅ If this helped solve your issue, please Accept as Solution so others can find it quickly. ❤️ If it didn’t fully solve it but was still useful, please click “Yes” on “Was this reply helpful?” or leave a Like :). 🏷️ For follow-ups @Valantis. 📝 https://valantisond365.com/
💼 LinkedIn
▶️ YouTube
Create a SharePoint list with:
#1. Person column (User) - Person or Group Type Column #2. Choice column (allow multiple selections) - Choice with multiple selection type column For each user, store the choices that should be available to them.
For Ex:
With({ _data: LookUp(Test,Person.Email=User().Email).Status }, Filter(Choices(Test.Status),Value in _data.Value) ) //Test - Replace with newly created mapping list name //Person - Replace with your peerson column which is in newly created mapping list. //Choices(Test.Status) - Your choice column items //Status - Replace with your choice column from Newly created mapping list.
For example:
// Example: Define all choices in a collection on App start or screen visible ClearCollect( AllChoices, {Value: "Option1"}, {Value: "Option2"}, {Value: "Option3"}, {Value: "Option4"} ); // Define user-specific allowed choices ClearCollect( UserChoices, If( User().Email = "user1@domain.com", Filter(AllChoices, Value in ["Option1", "Option3"]), If( User().Email = "user2@domain.com", Filter(AllChoices, Value in ["Option2", "Option4"]), AllChoices // default for others ) ) ); // Set dropdown or combo box Items property to: UserChoices
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Valantis 481
WarrenBelz 379 Most Valuable Professional
11manish 291