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 and Search a Ga...
Power Apps
Unanswered

Filter and Search a Gallery

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

I am developing an app that will allow a user to search for a project in a Gallery using a text input box and to also filter by active projects using a checkbox. The data is stored in a sql database.

 

My filter code is not working a expected and I need some help combining the search and filter. The following filter code works when the checkbox is true. when the checkbox is false (unchecked) it returns nothing. The "Active" database field is a bit data type.

 

If(IsEmpty(Checkbox3.Value), '[dbo].[Project_Information]', Filter('[dbo].[Project_Information]', Checkbox3.Value, Active))

 

I would like to combine the filter code with the the following search code. Not sure how to do this.

 

If(IsBlank(TextInput2.Text), '[dbo].[Project_Information]', Search('[dbo].[Project_Information]', TextInput2.Text, "Project_Name", "Project_Number"))

 

Thanks in advance for any suggestions.

Categories:
  • CarlosFigueira Profile Picture
    Microsoft Employee on at

    If you need to use two conditions (the checkbox - checked or unchecked - and the text input (blank or not), you can use a series of conditions in an If function like is shown below:

    If(
     !Checkbox3.Value && IsBlank(TextInput2.Text), '[dbo].[Project_Information]',
     IsBlank(TextInput2.Text), Filter('[dbo].[Project_Information]', Active),
     !Checkbox3.Value, Search('[dbo].[Project_Information]', TextInput2.Text, "Project_Name", "Project_Number")
     Search(Filter('[dbo].[Project_Information]', Active), TextInput2.Text, "Project_Name", "Project_Number"))

    - In the first line / condition (checkbox unchecked and text input blank), you would use the entire table

    - In the second line (text input blank), since you know that the checkbox cannot be unchecked (otherwise it would have matched the first condition), only perform the Active filter

    - In the third line, we already know that the text input is not blank (covered by the first two cases), so if the checkbox is unchecked, perform only the Search operation

    - Finally, if none of the above conditions were matched (e.g., the checkbox is checked and the text input is not blank), then perform both search and filter operations.

     

    You could possibly merge a couple of those lines, but I find that it makes it clearer what is being done this way.

     

    Hope this helps!

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Thanks Carlos,

     

    I have tried the code you provided but I get an error that the If statement has invalid arguments. Any help would be greatly appriciated.

  • Sparrow Profile Picture
    5 on at

    Missing a comma at the end of the 4th line:

     

    If(
     !Checkbox3.Value && IsBlank(TextInput2.Text), '[dbo].[Project_Information]',
     IsBlank(TextInput2.Text), Filter('[dbo].[Project_Information]', Active),
     !Checkbox3.Value, Search('[dbo].[Project_Information]', TextInput2.Text, "Project_Name", "Project_Number"),
     Search(Filter('[dbo].[Project_Information]', Active), TextInput2.Text, "Project_Name", "Project_Number"))

     

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 396 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 323

#3
WarrenBelz Profile Picture

WarrenBelz 193 Most Valuable Professional

Last 30 days Overall leaderboard