PowerApps cascading dropdown list with blank value by default
I have two dropdowns, Dropdown 1 and Dropdown 2. Data source for First dropdown is table A, and data source for second dropdown is table B and filters the values based on the value of dropdown 1.
To set the default value of dropdown 2 is
- Navigate to Dropdown 1 OnSelect property, add the following:
Collect(ClearCollect(Collection2,{Result:””}),Sort(Distinct(Filter(SharepointTable,
ColumnName1=dropdown1.Selected.Value),ColumnName2).Result,Result))
2. Navigate to Dropdown 2 items property and then add collection name:
Collection2
Leave a Comment