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 / Filter by text box and...
Power Apps
Answered

Filter by text box and combobox

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

I previously had my gallery filter by the text in a text search box and this worked fine i.e all profiles would display and it would filter based on the text in the search box. 

Gallery items were:

SortByColumns(
Filter(Profiles,
TextSearchBox1.Text in Title || TextSearchBox1.Text in 'About Me' || TextSearchBox1.Text in Option.Value
),
"{Name}",
Ascending
)

I have added a combobox as well now and want to display all items if combobox.selected.value is blank, otherwise filter by the value where it relates to 'Stream' in my data source. How can I update this?

 

Categories:
  • Verified answer
    RandyHayes Profile Picture
    76,299 Super User 2024 Season 1 on at

    @Anonymous 

    Please consider changing your Formula to the following:

    SortByColumns(
     Filter(Profiles,
     (TextSearchBox1.Text in Title || TextSearchBox1.Text in 'About Me' || TextSearchBox1.Text in Option.Value) &&
     (IsBlank(Combobox.Selected.Value) || Stream = Combobox.Selected.Value)
     ),
     "{Name}",
     Ascending
    )

     

    Change any name references accordingly for your app.

     

    I hope this is helpful for you.

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

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 397 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 354

#3
WarrenBelz Profile Picture

WarrenBelz 232 Most Valuable Professional

Last 30 days Overall leaderboard