Hi all,
I have got a SharePoint list which contains a column called "ExpectedReturnTime" and another column "ReturnTime"
I wanted to check in PowerApps, who are the late people in a gallery using Filter function.
When I use ExpectedReturnTime<ReturnTime it gives me an runtime error. (Requested operation is invalid)
Then I used: DateTimeValue(ExpectedReturnTime)< DateTimeValue(ReturnTime) in the filter function
Now I'm getting Delegation warning.
So I created a calculated column called "LateRetruns" in share point list
=IF(ExpectedReturnTime<ReturnTime,"Late","Not Late")
Then tried to filter in PowerApps using LateReturns="Late"
Now I'm getting correct data, but still that Delegation Warning exists.
At the moment I have only 20 records.. But It will be more than 1000 records when its up and running.
Will this be an issue? or is there anyway we can fix this..
Thanks