
Creator
2022-12-25
08:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
convert minutes (number) to hh:mm:ss
hello
i have an issue
i have the following time of reception in minutes:
I want to convert it into hh:mm:ss
Any ideas ?
Thanks
3,177 Views
1 Solution
Accepted Solutions


MVP
2022-12-25
09:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Divide the number of minutes by 1440 (number of minutes in a day) and then format as time or timestamp, e.g.
Timestamp(Temps_reception/1440,'hh:mm:ss')
3,168 Views
2 Replies


MVP
2022-12-25
09:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Divide the number of minutes by 1440 (number of minutes in a day) and then format as time or timestamp, e.g.
Timestamp(Temps_reception/1440,'hh:mm:ss')
3,169 Views


Champion III
2022-12-27
03:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use the Interval() function as below
in load script
Interval( Temps_reception,'hh:mm:ss') as Temps_reception
Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
If a post helps to resolve your issue, please accept it as a Solution.
3,116 Views
