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

How to convert the date

Hi All,

In my Database, the date format is 2013/01/01

How can I show it in QV with 2013-Jan?

Thanks.

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Or something like this...

=Date(Date#('2013/01/01','YYY/MM/DD'),'YYYY-MMM')

View solution in original post

4 Replies
MK_QSL
MVP
MVP

Date(YourDateField,'YYYY-MMM')

MK_QSL
MVP
MVP

Or something like this...

=Date(Date#('2013/01/01','YYY/MM/DD'),'YYYY-MMM')

Not applicable
Author

Hi,

      Year(YourDateField)&'-'&Month(YourDateField) as Date_field;

Hope this helps you.

Regards,

Divya

Not applicable
Author

Hi,

You can use the following;

date(MonthName(date),'YYYY-MMM')

HTH

-Shruti