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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date Conversion

Hi All,

           I am having the following data. But I want to convert that into Date Format.How can I achieve this one.

Output want like..Nov-2014,Oct-2014.

Month
2014-11
2014-11
2014-10
2014-12
2014-10
2014-11
2014-12
2014-12
1 Solution

Accepted Solutions
qlikmsg4u
Specialist
Specialist

LOAD Date(Date#(Date,'YYYY-MM'),'YYYY-MMM') as YearMonth;

Load * Inline [

Date

2014-11

2014-11

2014-10

2014-12

2014-10

2014-11

2014-12

2014-12

];

View solution in original post

3 Replies
petter
Partner - Champion III
Partner - Champion III

LOAD

     ....

     Date( MakeDate( Left( Month,4 ) , Right( Month , 2 ) , 1) , 'MMM-YYYY') AS Date

     ....

FROM

    .....;

PrashantSangle

Hi,

try

MonthName(Date#(DateField,'YYYY-MM')

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
qlikmsg4u
Specialist
Specialist

LOAD Date(Date#(Date,'YYYY-MM'),'YYYY-MMM') as YearMonth;

Load * Inline [

Date

2014-11

2014-11

2014-10

2014-12

2014-10

2014-11

2014-12

2014-12

];