Hello everyone,
we have developed a PowerApp in which the presented recordsets oa a browser gallery are filtered to only show entries that have been made today:
SortByColumns(
Search(
Filter('[dbo].[Sicherheitsanalysen]'; IsToday(Datum));
TextSearchBox1.Text;
"Bauleiter";
"Bemerkungen"
);
"Bauleiter";
If(
SortDescending1;
Descending;
Ascending
)
)
Unfortunately the app stopped working today (No recordsets are displayed at all). The problem seems to have something todo with a delegation warning we're getting for IsToday but we weren't able to figure out a better approach on filtering the recordsets without using the IsToday method.
Has anyone here encountered this issue and/or has a solution?