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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Formatting a Dynamic Window Title to use a specific date format

Trying to configure a window title to dynamically render the date in a MM/DD/YYYY format, but still displaying the numeric value for the date.  I'm using the following expression that works for another window:

=max([POS Date]) & 'Position Data Details-On-Demand'

Dynamic Date for Window Title.png

Any thoughts on what I need to do to get the date to display 12/31/2014?

1 Solution

Accepted Solutions
buzzy996
Master II
Master II

try this,

=max(date#([POS Date],'MM/DD/YYYY') & 'Position Data Details-On-Demand'

View solution in original post

2 Replies
buzzy996
Master II
Master II

try this,

=max(date#([POS Date],'MM/DD/YYYY') & 'Position Data Details-On-Demand'

Not applicable
Author

Shiva,

Thank you.  That worked.