Hi I am trying to filter the Gallery with
Filter(
Beschaffungen;
'Created By'.Email = User().Email;
If(
FilterbyApproved = true;
Status.Value = "Abgeschlossen";
Status.Value <> ""
);
If(
FilterbyOffen = true;
Status.Value = "in Klärung mit EK" Or "in Klärung mit WL" Or "in Klärung mit AL";
Status.Value <> ""
)
)
but app check is showing warning that "filter" might not work with big datasets.
How can I improve this?