Converting Time Values

YuGhee

New Member
Joined
Apr 20, 2002
Messages
1
How to convert 326.03 minutes into this form __hr__min__ sec?

I am supposed to enter a formulae which works out the total time spent on all calls listed in a pohone bill.

If I am provided with a data of showing all minutes and another column showing all seconds, how do I calculate the total time spent in that form __hr__min__sec?
Pleas help.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Lets say that A1 houses the value "326.03 minutes".

In B1 enter: =HOUR(A1/1440)
In C1 enter: =MINUTE(A1/1440)
In D1 enter: =SECOND(A1/1440)
 
Upvote 0
...and following on from Aladin's post, if you needed them all neatly displayed in one cell you'd put the following in cell E1 (say):

=B1&" hr, "&C1&" min, "&D1&" sec"


Regards,

Penfold
 
Upvote 0

Forum statistics

Threads
1,214,598
Messages
6,120,441
Members
448,966
Latest member
DannyC96

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