TIME : MINUTES = HOURS

verluc

Well-known Member
Joined
Mar 1, 2002
Messages
1,451
I have a sheet with in column A1:A20 fillid with minutes.I want a formale that gives me in cell A21 the sum in hours and minutes:
EX:

120
75
20
150

SUM : 6,12

Many thanks
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Not sure but I am thinking =sum(a1:a20)/60
format cell as number......

Denny
This message was edited by kinkyparamour on 2002-04-12 08:28
This message was edited by kinkyparamour on 2002-04-12 08:29
 
Upvote 0
Try
=sum(a1:a20)/1440

Example you gave should be 6 hours 5 mins

Format A21 to time
This message was edited by Brian from Maui on 2002-04-12 08:33
 
Upvote 0
Hi Guys,

I see where your formula is right and mine is way off. Could you please explain what the 1440 represents?

Denny
 
Upvote 0
On 2002-04-12 08:53, kinkyparamour wrote:
Hi Guys,

I see where your formula is right and mine is way off. Could you please explain what the 1440 represents?

Denny

1440 is the number of minutes in a day
 
Upvote 0
Thank you, now it makes sence to me.....Sometimes it's the little things that get in the way.....

Denny
This message was edited by kinkyparamour on 2002-04-12 09:03
 
Upvote 0
OK Here is a good example of a function which I use to convert time on my payrolls

=INT(E10/60)&" hours "&MOD(E10,60)& " minutes"


the E10 is where the minutes is

It will give you exp.18hours15minutes

And when you devide it by 60 it will give you 18.3333333 which is 18 and a third which is wrong.

:cool:
 
Upvote 0
OK Here is a good example of a function which I use to convert time on my payrolls

=INT(E10/60)&" hours "&MOD(E10,60)& " minutes"


the E10 is where the minutes is

It will give you exp.18hours15minutes

And when you devide it by 60 it will give you 18.3333333 which is 18 and a third which is wrong.

:cool:
 
Upvote 0

Forum statistics

Threads
1,213,532
Messages
6,114,176
Members
448,554
Latest member
Gleisner2

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