Good evening,
Im hoping someone might be able to help, i'm getting a delegation warning when trying to filter my gallery and i'm not to sure why. Here is the breakdown of my app
Sharepoint list is the source, its called Progress Tracker, 3 columns are named
Task, (text)
Progress, (text)
Start Date (date)
I have inserted a gallery that looks at this source, it displays fine. I have created 3 buttons (outside the gallery) that i want to filter the gallery on named
All
In Progress
Completed
I have added an Update Context function on the 'On Select' property of each button.
All - On Select = UpdateContext(
{filterAll: true, filterInProgress: false, filterCompleted: false})
In Progress - On Select = UpdateContext(
{filterInProgress: true, filterAll: false, filterCompleted: false})
Completed - On Select = UpdateContext(
{filterCompleted: true, filterInProgress: false, filterAll: false})
I have applied this filter on the items property of the gallery
Filter(
'Progress Tracker',
If(
filterCompleted,
Progress = "Completed",
filterInProgress,
Progress = "In Progress"
filterAll,
)
)
I am getting a delegation error on all the button filters when selected and i am not to sure why, im very new to powerapps and filtering in general so would be really grateful for any advice
Thank you

Report
All responses (
Answers (