I am looking to calculate average length of phone calls
I am looking to calculate average length of phone calls we do. The team puts in time of call and I want to average it. I converted the times into decimals so I can sum them, I am having trouble converting the totals back into mm:ss format. Please advise.
Answers
-
https://community.smartsheet.com/discussion/comment/265084
The thread above might help you. If you are still having issues then I would be happy to help you troubleshoot a formula if you show what you already have.
-
So I have the calculations I need, but how do I turn this back to mm:ss format. If it is just seconds it is an easy multiple by 60, but once I have a minutes I am lost. I need to create one formula that will handle this task. any ideas?
-
You could try using text parsing. Something like below if you replace c@row with your reference
=VALUE(LEFT(c@row, FIND(".", c@row) - 1)) + (VALUE(RIGHT(c@row, LEN(c@row) - FIND(".", c@row))) - MOD(VALUE(RIGHT(c@row, LEN(c@row) - FIND(".", c@row))), 60)) / 60 + ":" + MOD(VALUE(RIGHT(c@row, LEN(c@row) - FIND(".", c@row))), 60)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!