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

Date format

Hi

In my Cease MonthYear table having like this:

Cease MonthYear

40544

40575

40603

I write in my scrip

month(Num#([Cease MonthYear],'MM-YYYY')) as [Cease MonthYear],

byt it display only month Jan, Feb.....

I want Jan 2011, Feb 2011.... like this how can i get it?

Thanks

Madhu

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Date([Cease MonthYear],'MMM-YYYY') as [Cease MonthYear],

Or,

MonthName([Cease MonthYear]) as [Cease MonthYear],

View solution in original post

1 Reply
tresesco
MVP
MVP

Date([Cease MonthYear],'MMM-YYYY') as [Cease MonthYear],

Or,

MonthName([Cease MonthYear]) as [Cease MonthYear],