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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
capriconuser
Creator
Creator

Number in time format

I have this formula 

 

=Num(Sum({<TaYear=,TaMonth={'$(vMaxMonth)'},TaQuarter=,TaQuarter=,TaMonth=>}
Hours),'0.00')

output of this formula is 162.16 

 

now I want to convert this format in time format like this 162:16

when I use interval and timestamp this shows me different output .... 

Labels (1)
1 Reply
tresB
Champion III
Champion III

If you are only bothered about replacing '.' with ':' , the you can try like:

Replace(<YourExp> , '.',' :')

However, I am not sure if the expected output would be very meaningful in all the cases, especially because summing number and representing the same with timestamp like presentation would probably not fit always.