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

Converting HH.MM to TIME.

Good Day,

     I have a TIME here but not formatted into time.

     Sample:

     15.13 late means 15 hours 13 minute late. how can i convert it into a TIME.?

Thanks.

2 Replies
Anonymous
Not applicable
Author

interval(interval#('15.13','hh.mm'))

nagaiank
Specialist III
Specialist III

You may use

Interval(Interval#('15.13','hh.mm'),'hh:mm')

to get the time in HH:MM format.

If you need the internal representation of time for further calculation, you may use

Num(Interval#('15.13','hh.mm'))