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: 
Not applicable

combine time and date in load qlikview

The table of the database I load in Qlikview saves the date and the time separately. The database looks like this:
the date is saved as "2014-04-24 00:00:00.000" and the time is saved as "1899-12-30 17:42:00.000"

And i want to combine them as 1 date() field. Something like:

Load
date + time as date

The output should be (for this example) "2014-04-24 17:42:00"

It’s not possible to do this by hand. So a "Load Inline" isn't possible because there are to much records.

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Timestamp#(Date & ' ' &Time,'YYYY-MM-DD hh:mm:ss.fff') as YourNewField

View solution in original post

2 Replies
MK_QSL
MVP
MVP

Timestamp#(Date & ' ' &Time,'YYYY-MM-DD hh:mm:ss.fff') as YourNewField

tresesco
MVP
MVP

Try like:

Load

          Timestamp(Floor(date)+Frac(time)) as Newdate