Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

change of Date Format

I have created a  text object with following code “=date(now()) “ which displays today’s date (01/10/2013).

But I want something like this:  01 October 2013. Can anyone tell me how to do it ?

Thanks

1 Solution

Accepted Solutions
Not applicable
Author

Hi


Try;

=date(Now(), 'DD MMMMMMM YYYY')

View solution in original post

3 Replies
Not applicable
Author

Hi


Try;

=date(Now(), 'DD MMMMMMM YYYY')

Not applicable
Author

Excellent, Working fine.Thanks Steve!

lvf
Employee
Employee

Try to avoid using the now() function in the UI.  The reason it that it will be evaluated every second.

Best practice if you wish to reference the date, use today() function instead.

date(today(), ' DD MMMMMMM YYYY')