Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasmahajan

HOW TO FORMAT DATE IN QVD

Dear All,

Find attachment of  qv file  I want to load data from xlsx file but the date field

I am getting number's  I want this date in "DD/MM/YYYY"  format in my qvw file.

Hope this resolve your issue.
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.
3 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Use in load script as

     Load

          Date(DateField,'DD/MM/YYYY'),

     ..From..DataFile

Hope it helps

Celambarasan

jagan
Luminary Alumni
Luminary Alumni

Hi,

Use the following load script

LOAD

     Date(DateFieldName,'DD/MM/YYYY'),

     '

     '

     '

FROM DataSource;

Hope this helps you.

Regards,

Jagan.

vikasmahajan
Author

Hi

Thanks for reply

Resolved with

Date (Num(Evaluate(DATE) ))  as Date

Hope this resolve your issue.
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.