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

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
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,201
Messages
6,123,617
Members
449,109
Latest member
Sebas8956

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