Change Decimal to mm:ss.00 format

clueless48

New Member
Joined
Nov 10, 2010
Messages
5
Can anyone help? I'm new to forum and this is defeating me but cannot give up!!
I have lots of swimming time data which has been input manually using a decimal instead of a colon between minutes and seconds, how can I convert this? Changing the format to this does not work as some times have minutes and some are just seconds as below :-
The times need to be in mm:ss.ms format to be able to import into a system

50FREE42.9
100FREE1.39.48
50FLY52.36
200IM2.46.35

<tbody>
</tbody>
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
May not be the most efficient solution but I think this works:


Book1
ABCD
150FREE42.900:42.90
2100FREE1.39.4801:39.48
350FLY52.3600:52.36
4200IM2.46.3502:46.35
Sheet1
Cell Formulas
RangeFormula
D1=TEXT(IF(LEN(C1)-LEN(SUBSTITUTE(C1,".",""))<2,C1/86400,LEFT(C1,FIND(".",C1)-1)/1440+MID(C1,FIND(".",C1)+1,LEN(C1))/86400),"mm:ss.00")


WBD
 
Upvote 0
What is the input value?
If it is column A (decimal minutes?), one formula might be =A1*60*24 and then format the cell as suggested above.
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,499
Members
449,089
Latest member
Raviguru

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