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 Apps
Unanswered

undefined

(0) ShareShare
ReportReport
Posted on by 14

Hello, 🙂 i need to add text filter to my gallery but there is already a combobox filter how Can i correctly add text filter there ? 

My code in Gallery 

 

If(Dropdown1.Selected.Result ="All" , 'table', Filter('table', Title = Dropdown1.Selected.Result))

 

Thanks 🙂

Categories:
I have the same question (0)
  • BCBuizer Profile Picture
    22,854 Super User 2026 Season 2 on at

    Hi @Tobo111111 ,

     

    You can use the below code:

     

    Search(
    	Filter(
    		'table'
    		Dropdown1.Selected.Result="All" || Title = Dropdown1.Selected.Result,
    	),
    	TextInput1.Text,
    	Title
    )

     

    This assumes you have a TextInput1 which is used to filter the Title column. A drawback of this is that it is not delegable which will cause issues if you have larger numbers of items in your data source.

     

    A delegable alternative is which is slightly less user friendly (it will only search from the start of the Title value):

    Filter(
    	'table',
    	Dropdown1.Selected.Result="All" || Title = Dropdown1.Selected.Result,
    	StartsWith(Title, TextInput1.Text)
    )

     

  • Tobo111111 Profile Picture
    14 on at

    Yeah but the text will filter other column 

  • Sanshubh Profile Picture
    512 on at

    Just write Name of the column instead of title column

     

    Filter(
    	'table',
    	Dropdown1.Selected.Result="All" || Title = Dropdown1.Selected.Result,
    	StartsWith(Column_Name, TextInput1.Text)
    )
    
    Column_Name(i.e. FirstName ,LastName , Age)

     

    Or

     

    Search(
    	Filter(
    		'table'
    		Dropdown1.Selected.Result="All" || Title = Dropdown1.Selected.Result,
    	),
    	TextInput1.Text,
    	Column_Name
    )
    
    Column_Name(i.e. FirstName ,LastName , Age)

     

     

    That's it.

     

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
WarrenBelz Profile Picture

WarrenBelz 356 Most Valuable Professional

#2
11manish Profile Picture

11manish 225 Super User 2026 Season 2

#3
Mohsin Ali Profile Picture

Mohsin Ali 211

Last 30 days Overall leaderboard