I was able to get this to work with you help of this link c-sharpcorner.com/blogs/create-custom-people-picker-control-in-powerapps and was wondering how I get it to work for 3 different slections. Requestor, Approver, and manager? When I change one it changed all of them to the same one. I am guessing it is a change in the defualt setting of the text box I tried this in a few different ways but still does not work. RequestorListBox.SelectedUserDisplayName any suggestions. Thank you so much for any help you can provide.
Loading
Amira BedhiafiPosted Jan 14, 2025, 2:05 PM
So the idea is like the following instead of binding all three pickers to the same variable, create different variables for
Requestor,Approver, andManagerpickers.RequestorSelectedUser.ApproverSelectedUser.ManagerSelectedUser.Then in each picker, set the Default property to the corresponding variable:
RequestorListBox.Default = RequestorSelectedUserApproverListBox.Default = ApproverSelectedUserManagerListBox.Default = ManagerSelectedUserSet the OnChange property of each picker to update the corresponding variable: