How do I average time (in text format)

B

Butterycolor

I have a big problem.

I have calculated multiple time values using the following example:
=TEXT(B2-B1,"h:mm") where B2 and B1 are different time values

I get an answer like 0:16 (indicating 0hr and 16min) and 1:14 for example..

Here is my question. I have tried to average the answers (like the average
of 0:16 and 1:14) and I get #DIV/0 returned. It seems that I cannot use
theAVERAGE function to perform this because it does not recognize the values
0:16 and 1:14. I think it is because they are in TEXT format. Is this
correct?

If so is there any way that I can fix this? Because I have multiple values
over multiple worksheets and would like to average them all. It would be
extremely difficult and time consuming to use the VALUE function to change
all of the answers because I would have to do this to each answer
individually. A second question is, does anyone know how to apply the VALUE
function over multiple sheets.

Thanks so much
 
D

Dave Peterson

Maybe...
=b2-b1
but use a custom format of h:mm

or

=--TEXT(B2-B1,"h:mm")
and use a custom format of h:mm
 

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

Similar Threads

Average 10
Average with multiple conditions 4
How do I calculate an average if 2
14 Day Average 4
Average if ... 15
Average function 9
average 1
How do I average time (hh:mm:ss) excluding zeros? 2

Top