Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there an expression I can use in a [date] filter pane search field to select the latest date for which data has been loaded?
I tried =Max([date]) and =MaxString([date]) but they don't work.
My date field is loaded from a SQL date field: YYYY-MM-DD.
Thanks,
Dan
Hello Dan.
Try this "=date = max(total date)"
Best regards.
=Num(Date)=Num(Max(ALL Date))
Possibly don't need the NUM()
Ensure that the [date] field is recognized as a date field.
=Date(Max([date]), 'YYYY-MM-DD')
Thanks Javizh.