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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

Help with formatting Time

Hi,

I have a Dimension set up for 'Transaction Time'. I would like to change the format in which the time is displayed. It currently shows as 211024 which is basically 9:10pm and 24secs but i want it to display as 21:10.

Can anyone help?

3 Replies
sparur
Specialist II
Specialist II

Hello

time(time#('211024', 'HHMMSS'), 'HH:MM:SS')

hopkinsc
Partner - Specialist III
Partner - Specialist III
Author

Thanks for your answer, thats not exactly what i wanted though. i have several thousand different transactions at different times, i want the format for every transaction time to be displayed as HH:MM. at the moment they are all displayed as hhmmss.

Any ideas?

sparur
Specialist II
Specialist II

you can do it load script:

LOAD

....

TimeField,

time(time#(Left(TimeField, 4), 'HHMM'), 'HH:MM') AS FormattedTimeField

FROM ...