Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

formating

Hi,

I have a text object in my model which contains the formula '=only(FieldTime)'. It returns the value 250,25.

I'd like to set the time format for this formula so that I can get a result 4:10 (4 hours and 10 minutes).

How can I do it?

Thank you in advance,

Larisa

1 Solution

Accepted Solutions
sunny_talwar

Try like this:

=Interval(250.25/(60*24), 'hh:mm')

UPDATE: For your scenario -> =Interval(Only(FieldTime)/(60*24), 'hh:mm')

View solution in original post

2 Replies
sunny_talwar

Try like this:

=Interval(250.25/(60*24), 'hh:mm')

UPDATE: For your scenario -> =Interval(Only(FieldTime)/(60*24), 'hh:mm')

Anonymous
Not applicable
Author

Thank you!