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 a gallery for t...
Power Apps
Answered

Filter a gallery for the items which have status = New or Done in a delegable way with sharepoint

(0) ShareShare
ReportReport
Posted on by 1,888 Season of Giving Solutions 2025
I have a gallery which shows items from sharepoint custom list, and we have a Status filter, as follow:-
 
 
 
now currently if the user need to see the items which have either New or Done, they need to do 2 filters, as the In() operatino is not delegable in sharepoint. so how we can achive multiple status filtering ? is there any workarounds?
 
Thanks
I have the same question (0)
  • Verified answer
    BCBuizer Profile Picture
    22,675 Super User 2026 Season 1 on at
     
    It has been a while since I worked with SharePoint as a data source, but you may want to try the below formula with MultiSelect enabled on the ComboBox that lets the user select statuses:
     
    Filter(
      SharePointListName,
      Or(
        Status = "New" And "New" in ComboBox.SelectedItems.Value,
        Status = "Done" And "Done" in ComboBox.SelectedItems.Value,
        Status = "Closed" And "Closed" in ComboBox.SelectedItems.Value,
        Status = "In Progress" And "In Progress" in ComboBox.SelectedItems.Value,
        Status = "Assigned" And "Assigned" in ComboBox.SelectedItems.Value,
        Status = "Cancelled By User" And "Cancelled By User" in ComboBox.SelectedItems.Value,
        Status = "Cancelled By Manager" And "Cancelled By Manager" in ComboBox.SelectedItems.Value,
        Status = "Expired" And "Expired" in ComboBox.SelectedItems.Value
      )
    )
    
     
    The idea is that the in operator is not applied to a column in SharePoint, but to something that is inside the app and could hence work around the non-delegabilty (new word?) of the in operator for SharePoint lists. The downside of this solution, if it works, is that whenever there are any changes to the possible status values, you will need to update your app as well.
     
     
    If this reply helped you in any way, please give it a Like 💜 and in case it resolved your issue, please mark it as the Verified Answer ✅.
  • johnjohnPter Profile Picture
    1,888 Season of Giving Solutions 2025 on at
    @BCBuizer thank for the idea

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Vish WR Profile Picture

Vish WR 1,045

#2
Valantis Profile Picture

Valantis 675

#3
11manish Profile Picture

11manish 592

Last 30 days Overall leaderboard