Skip to main content
Announcements
WEBINAR April 23, 2025: Iceberg Ahead: The Future of Open Lakehouses - REGISTER TODAY
cancel
Showing results for 
Search instead for 
Did you mean: 
MT4T
Creator

Max date in filter pane for bookmark

Hi,

I have an issue with expressions to set up bookmark for pick latest date in filter pane.

I can not just use Today or similar functions. Data are archives of Turnover file which is not issued on daily basis.

I need bookmark in pair with sheet actions (trigger) to auto set default view on latest TO file breakdown.

My expression ' =max([file date.autoCalendar.Date])  ' , select all dates instead of max one. 

Strange is that same expression works as variable

MT4T_0-1657010409007.png

 

Labels (2)
1 Solution

Accepted Solutions
Or
MVP

Sorry, that should have been:

=[file date.autoCalendar.Date]=Date(Max(all [file date.autoCalendar.Date]))

View solution in original post

7 Replies
Or
MVP

Perhaps:

=[file date.autoCalendar.Date]=max([file date.autoCalendar.Date])

MT4T
Creator
Author

=[file date.autoCalendar.Date]=max([file date.autoCalendar.Date])

Also returns all values in my case (field is defined as date checked it)

Or
MVP

Usually that's a case of formatting - try date(max([file date.autoCalendar.Date]))

MT4T
Creator
Author

Tryied date(max([file date.autoCalendar.Date])) with same result.

Bellow my "settings" for date. Maybe it will help to solve.

MT4T_0-1657011521213.png

 

MT4T_1-1657011557734.png

 

 

Or
MVP

Sorry, that should have been:

=[file date.autoCalendar.Date]=Date(Max(all [file date.autoCalendar.Date]))

Or
MVP

Or_0-1657012028930.png

Or_1-1657012041655.png

 

MT4T
Creator
Author

Thank you mate, problem solved.