Average formula while skipping rows

arcadianwind

New Member
Joined
Jul 27, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I have data on a sheet labelled "Stats" that I would like to compute averages with to put on a sheet labelled "Summary Sheet". My data should go like this:

Summary Sheet G5 = average(Stats!I2:I4)
Summary Sheet G6 = average(Stats!I5:I7)
Summary Sheet G7 = average(Stats!I8:I10)
and so on.

How do I skip rows when dragging down this formula? I saw another thread discussing a similar problem but they were just trying to grab one piece of data from the original sheet, not several.

Thanks in advance.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Welcome to the Board!

Try putting this formula in cell G5 and copy down:
Excel Formula:
=AVERAGE(OFFSET(Stats!I$2:I$4,(ROW()-5)*3,0))
 
Upvote 1
Solution

Forum statistics

Threads
1,215,214
Messages
6,123,659
Members
449,114
Latest member
aides

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