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: 
paulyeo11
Master
Master

Case 933 How to recode date with Month in word ?

Hi All

My raw data :-

SeriesNameDocDate
SME30-Apr-20
SME24-Aug-20
SME31-Aug-20
SFA12-Aug-20

 

Directory;
LOAD
DocDate

FROM
QUOT_SD_.csv
(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

 

Can some one advise how to recode the date ? So the date recognize by the calendar .

Paul Yeo

 

2 Solutions

Accepted Solutions
Taoufiq_Zarra

@paulyeo11 like ?

Date#(DocDate,'DD-MMM-YY') as DocDate

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉

View solution in original post

Kushal_Chawda

@paulyeo11  If all your Date field format is same then better to set below date format variable in main tab. So that if you load the it will be automatically converted to date format.

SET DateFormat='DD-MMM-YY';

 

View solution in original post

2 Replies
Taoufiq_Zarra

@paulyeo11 like ?

Date#(DocDate,'DD-MMM-YY') as DocDate

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Kushal_Chawda

@paulyeo11  If all your Date field format is same then better to set below date format variable in main tab. So that if you load the it will be automatically converted to date format.

SET DateFormat='DD-MMM-YY';