Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

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

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

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

try

LOAD *,

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

FROM YourQVD;