I have a combo box that displays a list of values filtered by another combo box.
I want that when the user checks a box all default values are selected but considering the filter.
Currently the Choices statement works in the DefaultSelectedItems property but I need the values to be filtered
Can somebody help me please?
Thank you!
Thank you very much v-qiaqi-msft!
the formula works for me... Only now when saving the information is not stored, modify the update property with the same instruction
Hi @dalgi24,
Hope you could try the formula I provided and check if it works on your side.
Just replace the Option column with the column you want to populate the Combo Box with:
ForAll(Sort(Filter(Usuarios,'Tipo de Usuario'.Value=Dropdown1.Selected.Value);'Nombre({Name})'),Option)
Hi v-qiaqi-msft,
What I want is that the same thing that I have in the Item property works for the DefaultSelectedItems property, I need them to appear selected but with the filter applied.
Best Regards
Hi @dalgi24,
Do you want to filter the items from Choices() function based on the Sort() function?
Modify as below:
ForAll(Sort(Filter(Usuarios,'Tipo de Usuario'.Value=Dropdown1.Selected.Value);'Nombre({Name})'),Option)
In addition, I have found that you have different data source to populate the Combo Box in the DefaultSelectedItems property, however the data source should be the same one between the Items property and DefaultSelectedItems property.
WarrenBelz
83
Most Valuable Professional
MS.Ragavendar
49
mmbr1606
41
Super User 2025 Season 1