Time Formula

  • Thread starter Thread starter Jessica
  • Start date Start date
J

Jessica

I have Column A (Total time in Minutes) and column B (total time in hours).
If column A is more then 60 minutes i would like it to add an hour to column
B. I hope i'm explaining my self correctly
 
I have Column A (Total time in Minutes) and column B (total time in hours).
If column A is more then 60 minutes i would like it to add an hour to column
B. I hope i'm explaining my self correctly



=SUM(B:B)+INT(SUM(A:A)/60)


If you want to also subtract the whole hours from column A, then:

=MOD(SUM(A:A),60)
--ron
 
What does INT represent

Ron Rosenfeld said:
=SUM(B:B)+INT(SUM(A:A)/60)


If you want to also subtract the whole hours from column A, then:

=MOD(SUM(A:A),60)
--ron
 
What does MOD mean?

Ron Rosenfeld said:
=SUM(B:B)+INT(SUM(A:A)/60)


If you want to also subtract the whole hours from column A, then:

=MOD(SUM(A:A),60)
--ron
 
It would be quicker if you looked these things up in Excel Help.
INT( ) is a function which returns the integer value of a number, so
if you have 3.64 in cell A1, then INT(A1) will return 3 by truncating
the decimal values. See if you can find MOD in Excel Help.

Pete
 
If i need to know how many remaining minutes does column A have, what can i
add to the below formula?
 
Don't add anything at all. Use the second formula that Ron gave you.
 
If i need to know how many remaining minutes does column A have, what can i
add to the below formula?


Didn't the formulas I gave you do that????

Especially: =MOD(SUM(A:A),60)
--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top