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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to add specific time to the timedate field

Hi all

i have a Created field with like

CreatedDate,Value

1/13/2016 07:30 AM,40

1/14/2016 09:30 AM,120

i need to get

CreatedDate,Value

1/13/2016 09:00 AM,40

1/14/2016 11:30 AM,120

i.e i need to add 1:20 to the Created field

how to get this

Regards,

Mahesh

1 Solution

Accepted Solutions
sunny_talwar

Try this may be:

LOAD     TimeStamp(CreatedDate + (80/1440), 'M/DD/YYYY hh:mm TT') as CreatedDate,

               Value

View solution in original post

1 Reply
sunny_talwar

Try this may be:

LOAD     TimeStamp(CreatedDate + (80/1440), 'M/DD/YYYY hh:mm TT') as CreatedDate,

               Value