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

Period Conversions

Hi All,

I have Period Wise data in my table like    201401,201402,201403........201412  but as my requirement I need to display like

January 2014 ,February 2014,March 2014

in my  pivot table can anybody help me on this..

Thanks,

kishore.

1 Solution

Accepted Solutions
Not applicable
Author


Date(makedate(left(YourField,4),right(YourField,2),1), 'MMMM YYYY')

View solution in original post

3 Replies
tresesco
MVP
MVP

Try this:

Date(Date#(YourField, 'YYYYMM'), 'MMMM YYYY')

Not applicable
Author


Date(makedate(left(YourField,4),right(YourField,2),1), 'MMMM YYYY')

Not applicable
Author

Hi kishore

you can try with this below function

Date(makedate(left(YourField,4),right(YourField,2),1), 'MMMM YYYY')


Thanks