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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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],