Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2020 09:30 AM
Hello
Is there a way to convert the integer variable "Business Resolve Time" from Seconds measurement into Minutes?
Thanks in advance
Solved! Go to Solution.
Labels:
- Labels:
-
Incident Management
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2020 10:03 AM
var minutes = current.duration / 1000 /60;
You can use above to convert seconds to minutes.
Regards,
Sachin
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2020 10:03 AM
var minutes = current.duration / 1000 /60;
You can use above to convert seconds to minutes.
Regards,
Sachin