Hey all,
I'm getting this error. Is there a way to bypass it?

Hey all,
I'm getting this error. Is there a way to bypass it?
Hi @Anonymous,
this is the famous blue dot suggestion: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/delegation-overview#blue-dot-suggestions
It's mostly a better decision to store your raw data in a collection and filter this collection.
You could do something like this in your onVisible attribute for this screen:
ClearCollect(localStorage, Your_Data_Source);
Now you can filter this local collection like any other source.