Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Aag
Contributor III
Contributor III

Default Bookmark question

Hello all,

I have a Date picker which has Fromdate and Todate. I need to create a default bookmark which always opens the latest month until the maxdate it is refreshed.  

I have it 

date(min(Orderdate),'MM/DD/YYYY')

date(max(Orderdate),'MM/DD/YYYY')

Can someone help how to create bookmark with always latest month? When i create this, it does not show the latest date updated when the dashboard is refreshed. Not sure what is wrong. 

 

Labels (1)
1 Solution

Accepted Solutions
agigliotti
Partner - Champion
Partner - Champion

just type that expression in a listbox searching for Orderdate field , then you'll be able to create the bookmark.

View solution in original post

3 Replies
agigliotti
Partner - Champion
Partner - Champion

Hi @Aag ,

to create a dynamic bookmark for the last month:

=Orderdate>=MonthStart( max(Orderdate) ) and Orderdate<= MonthEnd( max(Orderdate) ) 

I hope it helps.
Andrea

Aag
Contributor III
Contributor III
Author

@agigliotti  Thanks for your response. So where do I give this condition? I have a date calendar as a range from date and Todate. I need to create default bookmark with this condition. Can you please let me know? 

 

agigliotti
Partner - Champion
Partner - Champion

just type that expression in a listbox searching for Orderdate field , then you'll be able to create the bookmark.