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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
mikecrengland
Creator III
Creator III

Days:Hours:Minutes format

Hello All -

If I have a bucket of minutes, how do i get it formatted to:

Days:Hours:Minutes

I assume it's the interval function, but can't get it to work...

Thanks!

mike

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be

Interval(FieldName, 'D:h:mm')

View solution in original post

5 Replies
sunny_talwar
MVP
MVP

May be

Interval(FieldName, 'D:h:mm')

mikecrengland
Creator III
Creator III
Author

would that work with an expression too?

sunny_talwar
MVP
MVP

I believe so... is it not working?

mikecrengland
Creator III
Creator III
Author

I worked! Just one adjustment... we needed to divide by 1440 (minutes in a day) to get the right value.

Thanks!

MarcoWedel
MVP
MVP

another one:

Interval(Interval#(yourminutes,'m'),'d:hh:mm')

hope this helps

regards

Marco