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
- Smartsheet Customer Resources
- 62.1K Get Help
- 351 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 455 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!