Skip to main content
Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Answered

filter on browsegallery

(0) ShareShare
ReportReport
Posted on by
Hi
 
I'm trying to filter on multiple columns in the BrowseGallery but I'm getting an error on the Search. Can anyone provide me any help
 
SortByColumns(
    Filter(
    [@Boekenlijst];
    Search(Boekenlijst; TextSearchBox1.Text;TITEL;AUTEUR)
    );
     "Title"; If(SortDescending1; SortOrder.Descending; SortOrder.Ascending))
 
 
  • Verified answer
    WarrenBelz Profile Picture
    148,795 Most Valuable Professional on at
    filter on browsegallery
    Firstly the response from mmbr1606 is correct using the alternate in filter. For your future reference, if you want to use Search, this is the structure
    SortByColumns(
       Search(
          [@Boekenlijst];
          TextSearchBox1.Text;
          TITEL;
          AUTEUR
       );
       "Title"; 
       If(
          SortDescending1; 
          SortOrder.Descending; 
          SortOrder.Ascending
       )
    )
  • Verified answer
    mmbr1606 Profile Picture
    13,193 Super User 2025 Season 1 on at
    filter on browsegallery
    hey
     
     
     
    can u try this:
     
    SortByColumns(
        Filter(
            [@Boekenlijst],
            TextSearchBox1.Text = "" || 
            (TextSearchBox1.Text in TITEL || TextSearchBox1.Text in AUTEUR)
        ),
        "TITEL",
        If(SortDescending1, SortOrder.Descending, SortOrder.Ascending)
    )
    
    if my answer helped please mark as verified,
     
     
    cheers
  • Suggested answer
    SpongYe Profile Picture
    5,580 Super User 2025 Season 1 on at
    filter on browsegallery
    Hello,
     
    Try this:
    ​SortByColumns(
        Filter(
            [@Boekenlijst];
            StartsWith(TITEL; TextSearchBox1.Text) || StartsWith(AUTEUR; TextSearchBox1.Text)
        );
        "Title";
        If(SortDescending1; SortOrder.Descending; SortOrder.Ascending)
    )
    
    ​
     

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

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 1