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 Converting

Hello people

I have month and date in 2 separate columns on a spread sheet but want a MonthName (Jan 2013)

I have already converted month into a proper date (Month(Date#((Left(Month,3)),'MMM')) as Month,) and year (Year(Date#(Year,'YYYY')) as Year,)

Now how can I combine the 2 to from a MonthName?

Thanx

1 Solution

Accepted Solutions
tresesco
MVP
MVP

try this:

MonthName (Date#(Left(Month,3)&Year, 'MMMYYYY')) as MonthName

View solution in original post

2 Replies
tresesco
MVP
MVP

try this:

MonthName (Date#(Left(Month,3)&Year, 'MMMYYYY')) as MonthName

Not applicable
Author

It worked perfectly!!!

Thank You!!!