Can I get some help with this AVERAGE formula?

Peter h

Active Member
Joined
Dec 8, 2015
Messages
417
I need to get the average of every 5th cell in column "C", so I'm using This Formula:

{=AVERAGE(IF((MOD(ROW(C$2:C$100)-1,5)=0)*(C$2:C$100),C$2:C$100))}

It seems to work exactly how I want it, unless a cell contains a value of 0. If the cell contains a value of 0, the formula doesn't count that cell in the average. How can I modify this formula to count all cells that have a value, even if that value is 0?

In testing this, I did just a normal average formula:

=Average(C6,C11,C16,...)

And I got the correct answer.

Thanks for any help.
 
@ joeu2004

FYI, I invented myself the approach to every nth as:

(a) MOD(ROW(C$2:C$100)-ROW(C$2),5)=0 [act starting with the first cell of the reference]

and

(b) MOD(ROW(C$2:C$100)-ROW(C$2)+1,5)=0 [act strating with the first nth cell of the reference]

eons ago.

If the OP means with

MOD(ROW(C$2:C$100)-1,5)=0

the (b) option or not, he can clarify that using the sample I posted.
 
Upvote 0

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

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