Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

date function to convert to Calendar Date

Greetings,

Hopefully this will be an easy one.  I looked through the forum and could not find the quick fix.

I am using NPrinting and would like to insert today's date on my cover page of my report.  This is the same logic as creating a text box in Qlikview.

my formula is simple  

=today() and it returns 1/13/2016.   I would like it to return January 13, 2016

what is the format for the date() command to make this work in Qlikview?

1 Solution

Accepted Solutions
Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

This format should do it for you

=Date(Today(),'MMMM, DD, YYYY')

View solution in original post

4 Replies
Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

This format should do it for you

=Date(Today(),'MMMM, DD, YYYY')

Anonymous
Not applicable
Author

Yes it does.  Thanks for your quick response.  I could not find that verbiage in any of the threads I looked through.

MK_QSL
MVP
MVP

Date(Date#(Today(),'M/DD/YYYY'),'MMMM DD, YYYY')

Anonymous
Not applicable
Author

Thanks for quick response.  That version works too