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

Create Date Time Formatting

Hi Community

Please find the attached QVW file and advice on how i can format my time field .

e.g

253 to 00:02:53

20904 to 02:09:04

Regards

Mutshidzi

1 Solution

Accepted Solutions
sunny_talwar

Try something like this:

LOAD 

    WI_CT as [Creation Time],

    Interval(Interval#(Num(WI_CT, '000000'), 'hhmmss'), 'hh:mm:ss') as NewCreationTime

FROM

(ooxml, embedded labels, table is Multi0103);

View solution in original post

2 Replies
sunny_talwar

Try something like this:

LOAD 

    WI_CT as [Creation Time],

    Interval(Interval#(Num(WI_CT, '000000'), 'hhmmss'), 'hh:mm:ss') as NewCreationTime

FROM

(ooxml, embedded labels, table is Multi0103);

Anonymous
Not applicable
Author