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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
francisvandergr
Partner - Creator II
Partner - Creator II

Date from excel in QV

I hav ea file with a column Date. When i read this date into QV i get no date but a value. I attached the Qv file and the Excel file. Can someone help me ?Is transpose the problem ?

1 Solution

Accepted Solutions
p_verkooijen
Partner - Specialist II
Partner - Specialist II

This would work, QV changes date content to a numeric value.


HoursTable:
LOAD
Debnr,
Ordernr,
DATE(SUBFIELD(Datum, '.', 1)) AS Datum,
Uren,
[.] AS Onbekend
RESIDENT Hours;

DROP TABLE Hours;

View solution in original post

1 Reply
p_verkooijen
Partner - Specialist II
Partner - Specialist II

This would work, QV changes date content to a numeric value.


HoursTable:
LOAD
Debnr,
Ordernr,
DATE(SUBFIELD(Datum, '.', 1)) AS Datum,
Uren,
[.] AS Onbekend
RESIDENT Hours;

DROP TABLE Hours;