Number Conversion Issue

scroucher

New Member
Joined
Oct 17, 2006
Messages
1
I need to convert accumulated time to minutes.

Example: Someone makes a telephone call and it lasts for 1:06 (1 minutes and 6 seconds).

Is there a formula that will allow me to show this as 1.1 minutes?

Also, if a call was made that was 70:06 (70 minutes and 6 seconds), it would have to be shown as 70.1 minutes.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
This would work for time values under 24 hours:<ul>[*]=HOUR(A1)*60+MINUTE(A1)+SECOND(A1)/60[/list]
 
Upvote 0
Depends how it's entered:

If 70:06, then =A1*24
if 1:10:06 or 00:70:06, then =A1*1440
 
Upvote 0
Either way I "overdid it" (or "underthunk it" if you prefer) by dragging HOUR(), MINUTE() & SECOND() into the mix. Sheesh... :rolleyes:
 
Upvote 0

Forum statistics

Threads
1,213,507
Messages
6,114,029
Members
448,543
Latest member
MartinLarkin

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