Hi,
I've written a Lookup which searches a SQL Azure db, filters by key then sorts using SortByColumns, of which I then use date <= Today() to return the top record. This works fine however I am getting the blue squiggle under <= Today() so assuming this will break after 500 records, is there any way around this?
"Last Date: " & LookUp((SortByColumns(Filter('[dbo].[SQLDB]'; abcID = ThisItem.PID); "abcDate"; Descending)); abcDate <= Today(); abcDate)
Cheers