Announcements
With( { _overdue: Filter( EnvironmentalPermits, ( Status.Value = "In Progress" || Status.Value = "Pending" || Status.Value = "Opened" ) && ExpirationDate < Today() ) }, CountRows(_overdue) )
In SharePoint, delegation for Choice columns is limited. The operator <> (not equal) is not delegable for Choice fields, and neither is CountRows() over a non‑delegable filter. So even though your filter works on small data sets, it won’t delegate for larger lists.
Also, Today() is delegable, but once the filter uses a non‑delegable operator, the whole filter becomes non‑delegable.
You can find more about delegable functions here - https://learn.microsoft.com/en-us/power-apps/maker/canvas-apps/connections/connection-sharepoint-online#power-apps-delegable-functions-and-operations-for-sharepoint
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.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 536
WarrenBelz 426 Most Valuable Professional
Haque 305