
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Date Format DD/MM/YYYY
HI Experts,
Attached is the DOB column in different formats, I would like to transform to single format DD/MM/YYYY.
I tried using ALT, DATE# and DATE functions, I am unable to bring all the DOB rows into DD/MM/YYYY.
Anyone, Please help!!
Thank you,
Regards,
Puru
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
for formatting using script use:
if(istext(DOB),Date(Date#(DOB,'DD/MM/YYYY'),'DD/MM/YYYY'),Date(num#(DOB),'DD/MM/YYYY'))
for formatting in frontend chart use:
if(istext(DOB),Date(Date#(DOB,'DD/MM/YYYY'),'DD/MM/YYYY'),Date(Date#(num#(DOB)),'DD/MM/YYYY'))
Regards,
Aditya

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, since you have a mixed date format, try this.
Date(
Alt(
Date#(DOB,'DD/MM/YYYY'),
Date#(DOB,'DD-MMM-YY'),
Date(Num#(DOB))),'DD/MM/YYYY') as DOB

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
[Sheet1]:
LOAD
Date([DOB],'DD/MM/YYYY' ) AS [DOB]
FROM [lib://DataFiles/QLIKcOMM.xlsx]
(ooxml, embedded labels, table is Sheet1);
this should give you result.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
for formatting using script use:
if(istext(DOB),Date(Date#(DOB,'DD/MM/YYYY'),'DD/MM/YYYY'),Date(num#(DOB),'DD/MM/YYYY'))
for formatting in frontend chart use:
if(istext(DOB),Date(Date#(DOB,'DD/MM/YYYY'),'DD/MM/YYYY'),Date(Date#(num#(DOB)),'DD/MM/YYYY'))
Regards,
Aditya

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, since you have a mixed date format, try this.
Date(
Alt(
Date#(DOB,'DD/MM/YYYY'),
Date#(DOB,'DD-MMM-YY'),
Date(Num#(DOB))),'DD/MM/YYYY') as DOB
