I have a single ComboBox with the data source being a SharePoint list of user Roles and Functions called RolesList. Here's an example of this list:
Role Function
Admin Data Entry
Admin Mailing
Admin Meeting Planning
Other Other Technical Work
Other Database
The requirement is to display the set of functions based on the user's role in the drop-down portion of the ComboBox, but to also allow the user to search for a function that is not normally a part of their job (e.g., a admin helped with testing a database).
I've set the ComboBox Items property to SortByColumns(Filter(Distinct(RolesList, Function),StartsWith(Function,ComboBox1.SearchText)),"Result",Ascending).
In the ComboBox Default property, I've tried to use Filter(Distinct(RolesList,Function), usrRole = Role), but I get 'The property expects Record values, but this rule produces incompatible Table values' error message.
Any help is greatly appreciated!
Solved! Go to Solution.
Resolved it by changing the ITEMS property of the ComboBox to:
If(IsBlank(ComboBox.SearchText),Distinct(Filter(RolesList,usrRole=Role),Function),Filter(Distinct(RolesList,Function),StartsWith(Result,ComboBox.SearchText)))
The issue was that my original ITEMS property did not include the DISTINCT function in the True portion of the IF statement. As such the results were 'Function' if True or 'Result' if False. I added the DISTINCT function to both parts of the IF statement, set the DisplayFields and SearchFields (under the Advanced tab) to ["Result"] and left the Default property blank.
Resolved it by changing the ITEMS property of the ComboBox to:
If(IsBlank(ComboBox.SearchText),Distinct(Filter(RolesList,usrRole=Role),Function),Filter(Distinct(RolesList,Function),StartsWith(Result,ComboBox.SearchText)))
The issue was that my original ITEMS property did not include the DISTINCT function in the True portion of the IF statement. As such the results were 'Function' if True or 'Result' if False. I added the DISTINCT function to both parts of the IF statement, set the DisplayFields and SearchFields (under the Advanced tab) to ["Result"] and left the Default property blank.
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 |
---|---|
180 | |
52 | |
41 | |
38 | |
29 |
User | Count |
---|---|
243 | |
81 | |
71 | |
69 | |
66 |