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: 
rustyfishbones
Master II
Master II

Covert Integer to Number

Hi All,

I have a number 3.75, I want to convert this to a time

So my answer should be 03:45.

Regards

Alan

1 Solution

Accepted Solutions
sunny_talwar

Try this

=Time#(Floor(3.75) & ':' & Frac(3.75)*60, 'h:mm')

View solution in original post

3 Replies
sunny_talwar

Try this

=Time#(Floor(3.75) & ':' & Frac(3.75)*60, 'h:mm')

shiveshsingh
Master
Master

Try this

=Floor(3.75) &':' & Frac(3.75)*60

MarcoWedel

another solution might be

=Time(3.75/24,'hh:mm')

hope this helps

regards

Marco