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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
microwin88x
Creator III
Creator III

Convert Minutes to Time (HH:MM)

Hello,

I have the following number (in minutes):

106,2241116089

I need to convert it to time format (hh:mm).

It would be something like: 01:47

Do you know how to do that?

Thank you!!!

1 Solution

Accepted Solutions
Anil_Babu_Samineni

May be this?

=interval(FieldName/24/60, 'hh:mm')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

May be this?

=interval(FieldName/24/60, 'hh:mm')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anil_Babu_Samineni

Or

=Time((25569 + Round(FieldName/1000) / 86400), 'hh:mm')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful