Hi, I've my Date field as text in the following format, i would like to convert it to Date format
01-FEB-18 is the data in my DB
i would like to convert it to 01.02.2018
Regards
Sai
try below
Format:
LOAD * INLINE [
dateformat
01-FEB-18
];
Result:
LOAD *,
Date(Date#(dateformat,'DD-MMM-YY'),'DD.MM.YYYY') AS Newdate
Resident Format;
try below
Format:
LOAD * INLINE [
dateformat
01-FEB-18
];
Result:
LOAD *,
Date(Date#(dateformat,'DD-MMM-YY'),'DD.MM.YYYY') AS Newdate
Resident Format;
You can go through below document for mixed date formats.
https://community.qlik.com/t5/Qlik-Sense-Documents/Multiple-Dates-Using-Alt/ta-p/1493744