convert minutes so I can compute average time, etc

Burdette

Board Regular
Joined
Mar 26, 2007
Messages
143
I need to report average time in Hours and minutes (example 5:35 or as 5 Hrs 35 Min) and the time given me is in text as hors and minutes. How do I convert to I can compute he average and report back in the desired format
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
How's this for you?

Excel 2010
ABCDE
1InputCount Minutes
20:5353Output4:05
37:47467
46:33393
50:3636
65:50350
72:01121
89:10550
91:50110
100:1515
115:50350

<colgroup><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
E2=INT(AVERAGE(B2:B11)/60)&":"&TEXT(MOD(AVERAGE(B2:B11), 60), "00")
B2=(VALUE(LEFT(A2,FIND(":",A2)-1))*60)+VALUE(RIGHT(A2, LEN(A2)-FIND(":", A2)))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>



/AJ
 
Upvote 0

Forum statistics

Threads
1,203,686
Messages
6,056,737
Members
444,888
Latest member
Babi_mn

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