Hi,
I have a local collection in my app with a list of values which I would like to use as a filter against a column within a SQL query. Let's refer to the collection as tblLocal, the query as qrySQL and the respective table's columns as colLocal and colSQL.
I'm using the formula: Filter(qrySql, colSQL in tblLocal.colLocal), which is then returning a delegation warning and only one record when a few hundred is expected to be returned.
I consulted the PowerApps documentation, and would have thought Filter(..., ... IN ...) would have been delegated since it is listed as a delegable function. Changing this to Filter(..., ... = xyz) encourages delegation, but obviously does not return the set of records that I need.
Does anybody know whether I'm misinterpreting the guidance and Filter(..., ... IN ...) isn't actually delegable? Has anybody found any ways around this issue?
Thanks
Joe