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: 
wagsacap
Contributor
Contributor

String Formatting

I am trying to format 2019-03-26T19:00:00Z into a time format to find the duration differences between two values. 

How can I do the same using Qlik Load Editor ?

Labels (1)
2 Replies
Vengatesh
Partner - Creator
Partner - Creator

Try this

Date(Date#(Left('2019-03-26T19:00:00Z',10)&' '&Left(Right('2019-03-26T19:00:00Z',9),8),'YYYY-MM-DD hh:mm:ss'),'DD/MM/YYYY hh:mm:ss')

You Know What To Do.
tresesco
MVP
MVP

May be like:

TimeStamp(Date#(PurgeChar('2019-03-26T19:00:00Z', 'ZT'), 'YYYY-MM-DDhh:mm:ss')) as [Time Stamp]