Excel functions

M

markwsquires

How can I add up a column of times to give me a total expressed in hrs/mins
and secs

or alternatively simply convert a number into minutes and secs - ie 2.82 =
3m22sec ??
 
J

Jacob Skaria

Use SUM() function and format the total cell to CustomFormat [h]:mm:ss

If this post helps click Yes
 
T

T. Valko

convert a number into minutes and secs - ie 2.82 = 3m22sec ??

What is the range of numbers you have?

A1 = 2.82

=TIME(0,INT(A1),MOD(A1,1)*100)

Format as m:ss returns 3:22

That won't work on anything greater than or equal to 60 minutes. For
example, 60.0 or 59.65.
 

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

Top