Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

MONTH FORMAT

hi ,

i wnat to extract  month from

MMM YYYY

format .

what should i do ?

3 Replies
its_anandrjs

Write like

Month(YourDateField) //You get Jan, Feb

If you need 01,02,03,04 then write like

Date(YourDateField,'MM') as Month

Or

Date(YourDateField,'MM')

Or

Date(Date#(Left(YourDateField,3),'MMM'),'MM')

tresesco
MVP
MVP

Month(Date#(YourData, 'MMM YYYY')) as Month

Not applicable
Author

left('MMMYYYY',3) as month