Excel formula to calculate average value from first non-zero in a range, to last non-zero in a range

pcgamer

New Member
Joined
Nov 5, 2017
Messages
2
Good evening.

Could you please assist me in calculating the average between a range of values in Microsoft Excel 2016 (or Office 365).
I wish to find the average between the first non-zero and the last non-zero of each row.

If I could break this up into 3 steps in the formula to calculate the resulting average number.
1st - To find the cell reference of the first non-zero from a row of data (or a range)
2nd - To find the cell reference of the last non-zero in the same row of data (or a range).
3rd - To find the average between those two cell references

Row 1 Table Example
In the below table example, there are two rows of data shown. For Row 1,
the first non zero that occurs in Row 1, is in Column C (the value is 14). Thus the first non zero in the range $A1:$F1 is C1.
The last non zero that occurs in Row 1, is Column E (the value is 12). Thus the last non zero in the same range $A1:$F1 is E1.
The average of these two references would thus be 12. That is the average of the numbers between C1 and E1, divided by the count of the numbers. Zero values are included.

I would like to copy the final formula down for each row, Row 1, Row 2, ..... Row 100 etc

Example Data

ABCDEFFirst non-Zero ReferenceLast non-Zero ReferenceResult
(Average)
10
0
14
10
12
0
C1E112
221
22
23
0
0
24
A2F215

<tbody>
</tbody>


Thank you so much for your assistance in advance.

Kylie
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
if F2 is really the last non zero then the result is 22.5 (with =AVERAGEIF(A1:F1,"<>0"))
 
Upvote 0
ARRAY formula for Row 1

=SUM(B4:G4)/((SMALL(IF(SUMIF(OFFSET(B4,0,0,1,COLUMN(B4:G4)-COLUMN(B4)+1),">=0")=SUM(B4:G4),COLUMN(B4:G4),""),1)-COLUMN(B4)+1)-IFERROR(MATCH(0.0001,B4:G4,1),0))

then drag down.

ARRAY formula is used


To enter ARRAY formula
Paste the formula
Press F2
Press Ctrl+Shift+Enter keys together.
formula will be covered with{} brackets by excel.
 
Last edited:
Upvote 0
@pacgamer

Those 12 and 15 in the I-range really need an explanation: Can you spell how do they obtain manually?
 
Upvote 0
Hi ,

Would this work ?

=AVERAGE(INDEX($A2:$F2, MATCH(1, ($A2:$F2 <> 0) * 1, 0)):INDEX($A2:$F2,LOOKUP(2,1/($A2:$F2 <> 0), COLUMN($A2:$F2) - MIN(COLUMN($A2:$F2)) + 1)))

This is an array formula , to be entered using CTRL SHIFT ENTER.
 
Upvote 0
And another one...
Code:
=AVERAGE(INDEX(A1:F1,AGGREGATE(15,6,COLUMN(A1:F1)/(A1:F1<>0),1)):INDEX(A1:F1,AGGREGATE(14,6,COLUMN(A1:F1)/(A1:F1<>0),1)))
 
Upvote 0

Unknown
ABCDEFG
1ABCDEFResult (Average)
200141012012
3212223002415
Sheet8
Cell Formulas
RangeFormula
G2=AVERAGE(INDEX(A2:F2,AGGREGATE(15,6,(COLUMN(A2:F2)-COLUMN(A2)+1)/(A2:F2<>0),1)):INDEX(A2:F2,AGGREGATE(14,6,(COLUMN(A2:F2)-COLUMN(A2)+1)/(A2:F2<>0),1)))
 
Last edited:
Upvote 0
Hi Nishant94. This formula you have created works perfectly. I cant thank you enough. I have been pulling my hair out for weeks trying to determine if it can be done. Again, its spot on!
 
Upvote 0

Forum statistics

Threads
1,215,068
Messages
6,122,950
Members
449,095
Latest member
nmaske

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