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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
mahitham
Creator II
Creator II

Date conversion into DD/MM/YYYY Format

Hi,

Can any one please help me to convert below date into DD/MM/YYYY format.

Date.png

 

Thanks in advance.

2 Solutions

Accepted Solutions
Anil_Babu_Samineni
MVP
MVP

May be

Date(alt(Date#(Date, 'DD/MM/YYYY'), Num#(Date)), 'DD/MM/YYYY')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

Kushal_Chawda
MVP
MVP

try

LOAD *,

            alt(date(Date#(DateField,'DD/MM/YYYY'),'DD/MM/YYYY'),date(DateField,'DD/MM/YYYY')) as DateFinal

FROM YourQVD;

View solution in original post

2 Replies
Anil_Babu_Samineni
MVP
MVP

May be

Date(alt(Date#(Date, 'DD/MM/YYYY'), Num#(Date)), 'DD/MM/YYYY')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Kushal_Chawda
MVP
MVP

try

LOAD *,

            alt(date(Date#(DateField,'DD/MM/YYYY'),'DD/MM/YYYY'),date(DateField,'DD/MM/YYYY')) as DateFinal

FROM YourQVD;