I have a help desk gallery connected to a large SharePoint list, over 2000 items. I'm trying to filter it based on my Choices column called Location, but I'm getting a delegation warning. My goal is to use a Dropdown box to let users filter the gallery. The formula on the Items property of the gallery that comes closest is
Filter('Service Request List', Location = Dropdown1.Selected.Value.Text)
but I still get the delegation warning. We have 50 locations, and my SharePoint list Location column accepts multiple values. So I can't use the Distinct function. I also can't use the In function because the list is over 500 records. Any other ideas?
I saw a suggestion somewhere of trying to add another filter to the filter, but many of our fields are choice-based, and Location is the primary way users would search for existing tickets at their site. Maybe I could filter by Location plus any ticket less than a month old, but I'm not sure how to write the formula for both of these.