Calculating average timings (with a slight twist)

Shadowboxer

Board Regular
Joined
Aug 24, 2006
Messages
60
I wish to calculate the averages timings (of a vehicle to pass between two points) across a number of columns but to be able to deselect some entries at an unspecified future date and have the average column ignore deleted entries and calculate the average only from entries containing a time.

I don't know how to do this.

Here's an example of my layout:

Columns AI to AR will contain timings in the format hh:mm:ss (the timings of a vehicle travelling between 2 points)

Column AS will show the average of all those timings taken - but must be able do so whilst ignoring nil entries (e.g. 00:00:00).

If anybody could explain how I can do this I would be most grateful.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
An array formula ( entered using Ctrl-Shift-Enter ) of :
Code:
=AVERAGE(IF(AI2:AR2>0,AI2:AR2))

or, do:
Code:
SUM(AI2:AR2)/COUNTIF(AI2:AR2,">0")
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

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