web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Multiple combo box fil...
Power Apps
Answered

Multiple combo box filters are not working

(0) ShareShare
ReportReport
Posted on by 12

I am working on below filters but can only filter by one criteria for each combo box.

Banana_Pancake_2-1662951925762.png

e.g. If i selected more than 1 filters (first knowledge then general) , only the filter that are newly selected (i.e. general) will apply

Banana_Pancake_3-1662952029314.png

 

 

Formulas as below.

Search(
Filter(
'Master Course List',
IsBlank(ComboBox_SolutionFilter.SelectedItems.Value) || IsEmpty(ComboBox_SolutionFilter.SelectedItems) || Solution.Value in ComboBox_SolutionFilter.Selected.Value,
IsBlank(ComboBox1_CategoryFilter.SelectedItems.Value) || IsEmpty(ComboBox1_CategoryFilter.SelectedItems) || Category.Value in ComboBox1_CategoryFilter.Selected.Value,
IsBlank(ComboBox1_RequiredFilter.SelectedItems.Value) || IsEmpty(ComboBox1_RequiredFilter.SelectedItems) || 'Mandatory/Optional'.Value in ComboBox1_RequiredFilter.Selected.Value,
IsBlank(ComboBox1_LearningAreaFilter.SelectedItems.Value) || IsEmpty(ComboBox1_LearningAreaFilter.SelectedItems) || 'Learning Area'.Value in ComboBox1_LearningAreaFilter.Selected.Value
),
SearchTextbox.Text,
"Course_Name)"
)

 

Thank you.

Categories:
  • Verified answer
    WarrenBelz Profile Picture
    156,526 Most Valuable Professional on at

    Hi @Banana_Pancake ,

    You have the Selected and SelectedItems reversed - also try this structure

    Search(
     Filter(
     'Master Course List',
     (
     Len(ComboBox_SolutionFilter.Selected.Value) = 0 || 
     Solution.Value in ComboBox_SolutionFilter.SelectedItems
     ) &&
     Len(ComboBox1_CategoryFilter.Selected.Value) = 0 || 
     Category.Value = in ComboBox1_CategoryFilter.SelectedItems
     ) &&
     Len(ComboBox1_RequiredFilter.Selected.Value) = 0 ||
     'Mandatory/Optional'.Value in ComboBox1_RequiredFilter.SelectedItems
     ) &&
     (
     Len(ComboBox1_LearningAreaFilter.Selected.Value) = 0 || 
     'Learning Area'.Value in ComboBox1_LearningAreaFilter.SelectedItems
     )
     ),
     SearchTextbox.Text,
     "Course_Name"
    )

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    Visit my blog Practical Power Apps

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.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 393 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 328

#3
WarrenBelz Profile Picture

WarrenBelz 278 Most Valuable Professional

Last 30 days Overall leaderboard