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 / Browse gallery filteri...
Power Apps
Answered

Browse gallery filtering with textsearchbox

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hi everyone,

 

I have an app linked to a SharePoint list. I would like to combine the filtering conditions I have with a textsearchbox which identifies part of the text.

My browse gallery shows registration plates, and I want the textsearchbox to filter them just introducing part of the numbers and letters of the plate.

 

Righ now I have the following formula to filter the gallery:

 

Distinct(Filter(SPList;Or('Condition 1;'Condition 2;'Condition3) &&' Condition4);ColumRegistrationumber)

 

¿How can I add to this filter one like the one that follows?

Filter(SPList; TextSearchBox1.Text; ColumRegistrationumber)

 

¿Is there any alternative way to get this filter?

 

Thank you very much!

 

Regards,

Masoud9

Categories:
I have the same question (0)
  • Verified answer
    Drrickryp Profile Picture
    Super User 2024 Season 1 on at

    Hi @Anonymous 

    If you are working with a SharePoint datasource, you would need to use the "in" operator. Your formula containing the Distinct() function produces a one column table with a column named Result.  Assuming that your current formula works, then 

    Filter(Distinct(Filter(SPList;Or('Condition 1;'Condition 2;'Condition3) &&' Condition4);ColumRegistrationumber);
    TextSearchBox1.Text in Result)

    should search the Result column for any item containing part or all of the plate numbers.  However, "in" is not delegatable in SharePoint so the number of items resulting from your filter would need to be less than the delegation limit. 

    Another way to do it would be to create a collection using your formula and then you could use the Search() function on the collection.  In that case, you would use

    ClearCollect(colRegNumbers, Distinct(Filter(SPList; Or('Condition 1; 'Condition 2; 'Condition3) &&' Condition4);
    ColumRegistrationumber))

     as the OnSelect property of a button and then set the Items property of the gallery to 

    Search(colRegNumbers; TextSearchBox1.Text; Result)

    You would still run up against a delegation problem since ClearCollect() and Collect() are not delegatable but there would be no delegation error in the Items property of the gallery.

     

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Thank you very much @Drrickryp , that was perfect!

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 Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 387

#2
timl Profile Picture

timl 340 Super User 2026 Season 1

#3
Vish WR Profile Picture

Vish WR 301

Last 30 days Overall leaderboard