Alternate from timecode to number to timecode

workindan

New Member
Joined
Jun 7, 2010
Messages
32
I'm importing data from Avaya CMS Call Center into excel...I run into an issue when I'm bringing in these kinds of numbers:

Total time:
8:46:53
:30:11
:18:37
etc...

When they come into excel, I get these values:
31613
1811
1117
etc...

If I format the column into any variation of (hh:mm:ss) or (h:mm:ss, mm:ss) it just outputs: 00:00:00. I've tried the timevalue, text/format functions to get it to work, and I've tried some arithmetic by dividing/multiplying 60 and 24 to see if I could find a multiplier that would produce time value of hours and minutes...but no luck their either.

Any ideas on how to take these numbers and turn them back into their timecode format?
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
I believe this should work:

Excel Workbook
AB
248:46:5331613
25:30:111811
26:18:371117
Sheet1
Cell Formulas
RangeFormula
B24=(("0"&A24)+0)*86400
B25=(("0"&A25)+0)*86400
B26=(("0"&A26)+0)*86400

Sorry I misread your problem. I will post something different in a second.
 
Upvote 0
Here you go:
Excel Workbook
ABC
248:46:53316138:46:53
25:30:1118110:30:11
26:18:3711170:18:37
Sheet1
Cell Formulas
RangeFormula
B24=(("0"&A24)+0)*86400
B25=(("0"&A25)+0)*86400
B26=(("0"&A26)+0)*86400
C24=TEXT(TIME(0,0,B24),"h:mm:ss")
C25=TEXT(TIME(0,0,B25),"h:mm:ss")
C26=TEXT(TIME(0,0,B26),"h:mm:ss")

Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,215,495
Messages
6,125,149
Members
449,208
Latest member
emmac

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top