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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date/String Conversion

I have field in the QVD YearMonth and the format is YYYYMM. In the line chart I want to display this dimension as MON-YY.

What is the best possible way?

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Piyush

Assuming your field is a text field then try :

     date( date#([yourfield],'YYYYMM') ,'MMM-YY')

Best Regards,     Bill

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Piyush

Assuming your field is a text field then try :

     date( date#([yourfield],'YYYYMM') ,'MMM-YY')

Best Regards,     Bill

Not applicable
Author

Thank you. It worked.