average last 30 non zero entries in a column, update automatically

aaacccc

New Member
Joined
Jul 11, 2013
Messages
19
I have several columns and at the end of the column I need to average the last 30 non zero values. So far I have this:

=SUM(OFFSET(D16,COUNTA(D16:D326)-29,0,30,1))
column starts at D16 and ends D326

it seems to be working, but it automatically selects the last 30 entries regardless of the value, there are many cells that are empty and so I made them zero. I want an average of the last 30 values that are not zero. I will be adding rows to the column and so I want the formula to update as I add more entries.

I do not know much about excel, and keep reading online about arrays and codes, the simplest way would be best, thanks!
ex:

D
.
.
.
16
.
.
.
326
Average here
 
I guess initially, I wanted the average of the last 30 non zero values, but what I actually need is the average of the non zero values within the last 30 entries only. How does that change the formula that I have already?

Your specs are confusing, it looks more like...
Rich (BB code):
=IFERROR(AVERAGEIF(OFFSET(INDEX(B:B,SUM(ROW())-1),0,0,
  -MIN(30,SUM(ROW())-1)),">0"),"")

if you are entering the formula after the row of the last value.

Outside the data column:
Rich (BB code):
=IFERROR(AVERAGEIF(OFFSET(INDEX(B:B,MATCH(9.99999999999999E+307,B:B)),0,0,
  -MIN(30,COUNT(B:B))),">0"),"")
 
Last edited:
Upvote 0

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Aladin, what I am trying to do is select the last 30 rows automatically, and then within those 30 rows take the average of the nonzero values
 
Upvote 0
I have found a formula that works, thank you all for your help!

That's great. Just for the record:

Given...
1
0
6
8

1) The average of nonzero values in the last three used cells is: 7

2) The average of the last three nonzero values is: 5

The formulas I posted targets (1), not (2), after your answer to a question posed earlier in this thread.
 
Upvote 0
Another way:
Code:
=AVERAGEIF(OFFSET(D326,,,-30),"<>0")
Markmzz

A small modification (array formula - use Ctrl+Shift+Enter and not only Enter):

With the cell D327 active, create the name LastData =D326 (not =$D$326).

Code:
=AVERAGEIF(OFFSET(LastData,,,-30),"<>0")

or use

=AVERAGEIF(OFFSET($D$327,-1,,-30),"<>0")

Markmzz
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,971
Members
449,059
Latest member
oculus

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