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: 
prees959
Creator II
Creator II

Concatenating Date Time Fields and Calculate Hours

HI,

I have the following fields in my dataset :

DateTime Ordered  : which is in the format 31/01/2018  09:22:58

Date Deivered   :    which is in the format  01/02/2018  00:00:00

Time Delivered   :  which is in the format 08:00:00

What I need to do is combine the Date Delivered and Time Delivered find out the hours between the Date Delivered and Date Ordered.

Appreciate any advice,

Phil

3 Replies
YoussefBelloum
Champion
Champion

Hi,

on which field you want to combine these informations ? on the Date Delivered ?

Date Delivered = 01/02/2018 08:00:00 ??

prees959
Creator II
Creator II
Author

Hi,

Yes.  The Date Ordered already has the time attached.

Many thanks,

Phil

YoussefBelloum
Champion
Champion

On the Script, try this:

Timestamp(Timestamp#(left([Date Deivered],10)&Right([Time Delivered],8),'DD/MM/YYYYhh:mm:ss'),'DD/MM/YYYY hh:mm:ss') as [Date Deivered]