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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Carlaf_93
Creator II
Creator II

From CSV to qvd

Good afternoon,

i've got a issue with a date field that i want to insert into a qvd file.

In the attached file there is the date field. When i do the store in a qvd some of the date are set as text and other times as date. Even if i put the 

load

date(@7,'DD/MM/YYYY') AS #@7

it does'nt work...

 

Any ideas?

For example the date '14/07/2018' can't be found if i force the date() formula.

 

Thanks

C

Labels (2)
1 Solution

Accepted Solutions
marcus_sommer

Try it with: date(date#(@7,'DD/MM/YYYY'), 'DD/MM/YYYY') AS #@7

View solution in original post

2 Replies
marcus_sommer

Try it with: date(date#(@7,'DD/MM/YYYY'), 'DD/MM/YYYY') AS #@7

BrunPierre
Partner - Master II
Partner - Master II

Like this.

Date(Num#(@7),'DD/MM/YYYY') as #@7