Convert TEXT to Elapsed Time

Gary Schultz

New Member
Joined
Feb 21, 2011
Messages
5
How do I convert a text string representing elapsed time to MINUTES:SECONDS?

Example:

Cell A1 contains the TEXT string "010646" representing 01 Hours, 06 MINUTES, 46 SECONDS. I would like to display this data in cell B1 as 66:46 or 66 MINUTES, 46 SECONDS of elapsed time. What formula should be used in cell B1?
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Welcome to the board...

Try

=TEXT(A1,"00\:00\:00")+0

This will give 1:06:46 (1 hour 6 minutes 46 seconds.)
Then format the cell as custom [mm]:ss

Hope that helps.
 
Upvote 0
could be
Code:
=CONCATENATE(LEFT(A1,2)*60+MID(A1,3,2)," Minutes, ",RIGHT(A1,2)," Seconds")
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,633
Members
452,933
Latest member
patv

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