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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
amrutha_sathish
Contributor II
Contributor II

Converting a Date Format to another

I have a field Named Month in the format of 202304 (YearMonth).

So how do i convert it into the format 'Apr-23'.

Thanks in advance.

Labels (3)
2 Solutions

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Something along these lines:

Date(date#(OldMonth, 'YYYYMM'), 'MMM-YY')

 

Ask me about Qlik Sense Expert Class!

View solution in original post

BrunPierre
Partner - Master II
Partner - Master II

One way could be this.

Date(Date#(YearMonthField,'YYYYMM'),'MMM-YY')

View solution in original post

6 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Something along these lines:

Date(date#(OldMonth, 'YYYYMM'), 'MMM-YY')

 

Ask me about Qlik Sense Expert Class!
BrunPierre
Partner - Master II
Partner - Master II

One way could be this.

Date(Date#(YearMonthField,'YYYYMM'),'MMM-YY')

Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Jinx!

Ask me about Qlik Sense Expert Class!
amrutha_sathish
Contributor II
Contributor II
Author

Thank you! It worked!! 😊

amrutha_sathish
Contributor II
Contributor II
Author

Thank you! It worked 🤗

simsa
Contributor III
Contributor III

Date(Date#('202303','YYYYMM'),'MMM-YY')

simsa_0-1688657843274.png