Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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.