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 Browse Gallery ...
Power Apps
Answered

Filter Browse Gallery using Date Picker & Filter Gallery

(0) ShareShare
ReportReport
Posted on by 29

Hi All,

 

I would like to know if its possible to combine 2 formulas for the browse gallery.

1. Filter Gallery act as a filter for status.

2. Date Picker act as a date filter.

 

My formula for the Filter Gallery:

If(ThisItem.Title="Active",UpdateContext({type:"Active"}),If(ThisItem.Title="Pending",UpdateContext({type:"Pending"}),If(ThisItem.Title="Acknowledged",UpdateContext({type:"Acknowledged"}),If(ThisItem.Title="Resolved",UpdateContext({type:"Resolved"}),If(ThisItem.Title="Overall Alerts",UpdateContext({type:"Overall Alerts"}))))))

 

My formula for the Browse Gallery:

If(type="Overall Alerts", 'MS Teams Alerts', If(FilterGallery.Selected.TextBox1.Text="Active",Filter('MS Teams Alerts',type in Status),If(FilterGallery.Selected.TextBox1.Text="Pending",Filter('MS Teams Alerts',type in 'Admin Status'),If(FilterGallery.Selected.TextBox1.Text="Acknowledged",Filter('MS Teams Alerts',type in 'Admin Status'),If(FilterGallery.Selected.TextBox1.Text="Resolved",Filter('MS Teams Alerts',type in Status))))))

 

I would like to include this formula: 

Filter('MS Teams Alerts',Text('Date Received', "[$-en-US]mm-dd-yyyy")=Text(DatePicker1.SelectedDate, "[$-en-US]mm-dd-yyyy"))

 

For me to see my data per date and per status. Thank you.

 

  • Verified answer
    v-xida-msft Profile Picture
    Microsoft Employee on at

    Hi @heydamianards ,

    Where do you put your first formula? Within OnSelect property of your FilterGallery?

    Do you want to combine your existing Filter formula with the DatePicker Filter formula?

     

    Based on the needs that you mentioned, I think it is not necessary to type the FilterGallery.Selected.TextBox1.Text formula within your BrowserGallery.

     

    I have made a test on my side, please take a try with the following workaround:

    Set the OnSelect property of the Filter Gallery to following:

    If(
     ThisItem.Title="Active",
     UpdateContext({type : "Active"}),
     ThisItem.Title= " Pending",
     UpdateContext({type : "Pending"}),
     ThisItem.Title = "Acknowledged",
     UpdateContext({type : "Acknowledged"}),
     ThisItem.Title = "Resolved",
     UpdateContext({type : "Resolved"}),
     ThisItem.Title = "Overall Alerts",
     UpdateContext({type: "Overall Alerts"})
    )

     

    Set the Items property of the BrowseGallery to following:

    Filter(
     'MS Teams Alerts',
     If(
     type = "Overall Alerts",
     true,
     type = "Active" || type = "Resolved",
     type in Status,
     type = "Pending" || type = "Acknowledged",
     type in 'Admin Status'
     ),
     Text('Date Received', "[$-en-US]mm-dd-yyyy") = Text(DatePicker1.SelectedDate, "[$-en-US]mm-dd-yyyy")
    )

    Please consider take a try with above solution, check if the issue is solved.

     

    Best regards,

  • heydamianards Profile Picture
    29 on at

    Hi @v-xida-msft 

     

    This really helps. Thank you very much. 

     

    Last query, I'm planning to include a textsearchbox on my app but how can i properly include it on my formula?

     

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

#2
Mohsin Ali Profile Picture

Mohsin Ali 356

#3
WarrenBelz Profile Picture

WarrenBelz 232 Most Valuable Professional

Last 30 days Overall leaderboard