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 / Delegation Issue Using...
Power Apps
Unanswered

Delegation Issue Using Filter Function On SharePoint Choice Column

(0) ShareShare
ReportReport
Posted on by 56

Hi All,

I have a question regarding delegation that came about earlier this week when I made a slight change to my SharePoint data source ("Requests"). 

The Power App includes a screen with a Radio Button control that is used to filter a Gallery control to show items from the SharePoint list based upon the status. Radio Button choices are "Open" and "Completed". These values tie to a Status column on the SharePoint list.

Previously, this was a Text column called "Req_Status". Thus, I used the following for the Items property of the Gallery control:

*****************

Filter(
Requests,
Req_Status = radioBtnStatus.Selected.Value
),

*****************

Earlier this week, I replaced Req_Status with a new Choice column called Request_Status. The Choice column values are simply "Open" and "Completed", thus they still align with the Radio Button choices in the Gallery screen. Since I'm filtering on a Choice column now, I updated the Items property of the Gallery to the following:

*****************

Filter(
Requests,
Request_Status.Value = radioBtnStatus.Selected.Value
),

*****************

The Gallery control still displays the pertinent items (based upon the Radio button choice equaling "Open" or "Completed") - however, I noticed that if I select the latter, it's capping at 500 items which is the Data Row Limit setting for the app. There's about 550 items in the SharePoint list with a "Completed" status, so the Gallery is no longer pulling a full dataset. When I was filtering off the Text column (Req_Status), I didn't encounter any issues.

Now obviously I can work around this in the interim by simply increasing the Data Row Limit in the App settings. That said, I'm a bit vexed as to why I'm running into this issue if the Filter function is Delegable.

Is there a reason it would behave differently when filtering against a Choice column versus Text? 😖

 

Thanks in advance for any assistance / guidance you can provide! 😊

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

    @bcanfield83 

    Try

     

     Filter(
     Requests, IsBlank(Request_Status.Value)|| // will show all records if a blank is included
     Request_Status.Value = "Open"||
     Request_Status.Value = "Completed" 
     ),

     

     

     

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 March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 534

#2
WarrenBelz Profile Picture

WarrenBelz 416 Most Valuable Professional

#3
Valantis Profile Picture

Valantis 306

Last 30 days Overall leaderboard