Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
P_qlik
Partner - Contributor III
Partner - Contributor III

problem with date format

Hi,

I have this formula: =max([YYYYMM]) and the result is 202104

I need to have it in this format: april 2021

I've tried this formula: =date(max([YYYYMM]), 'MMMM YYYY') but the result is not correct:  may 2453

How can I do?

Thank you

1 Solution

Accepted Solutions
MayilVahanan

HI @P_qlik 

Try like below

Date(Date#(max([YYYYMM]), 'YYYYMM'),'MMM YYYY')

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

HI @P_qlik 

Try like below

Date(Date#(max([YYYYMM]), 'YYYYMM'),'MMM YYYY')

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
P_qlik
Partner - Contributor III
Partner - Contributor III
Author

Thank you!