Hello all,
I am trying to apply filters on the gallery. One such filter is to get tasks updated between starttime and endtime.
Filter(
Tasks As rtTask,
rtTask.Tasktype = "MainTask",
rtTask.TaskHours <= 0,
LookUp(subTaskTable,TaskId.TaskId = rtTask.TaskId).updateTime >= varshiftTime &&
LookUp(subTaskTable,TaskId.TaskId = rtTask.TaskId).updateTime <= varshiftTimeEnd,
rtTask.TaskName in systemTaskColl
)
The lookup inside filter function is giving me delegation warning. Is there any alternate approach to make this work? Thank you.