Variable length averages

HikerBrian

New Member
Joined
Aug 26, 2011
Messages
15
Hi,

I have 20 lists of burner temperatures from an oven test I'd like to analyze, and I need to find the average after it finishes the initial heating cycle. All the data lists are different lengths, and I'm wondering if there is a way I can tell Excel to average the data from the MAX value (wherever that is) to the end of the column.

Here is a brief example:

125
361
536
746
964
1151
1203
1181
965
754
836
792
821
787


I'm interested in averaging the part of the column after the max to the end (in red), but I don't know how my cells are before the max! Obviously I could just scroll down and find the max, but with the amount of data I have (and I'll be taking more every day) I'd like to automate it.

Thanks!!
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Assuming you have data down to row 100 at the most (adjust as required) try this formula

=AVERAGE(INDEX(A2:A100,MATCH(MAX(A2:A100),A2:A100,0)+1):A100)
 
Upvote 0

Forum statistics

Threads
1,224,537
Messages
6,179,405
Members
452,911
Latest member
a_barila

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