Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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!