averaging formula help

andrewb90

Well-known Member
Joined
Dec 16, 2009
Messages
1,077
I have to average K10:K15 but sometimes K15 will not have any data totaled to it and therefore will result in zero, how do I average all the other numbers except for the zeros?

Thanks,

Andrew
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
I seem to be getting a #DIV/0 when I enter that even with all fields full of numbers.
 
Upvote 0
I have to average K10:K15 but sometimes K15 will not have any data totaled to it and therefore will result in zero, how do I average all the other numbers except for the zeros?

Thanks,

Andrew

Try something like...

=AVERAGEIF(K10:K15,">0")

With some control:

=IFERROR(AVERAGEIF(K10:K15,">0"),"")

Generic for all Excel versions...

=SUMIF(K10:K15,">0")/COUNTIF(K10:K15,">0")

With some control:

=SUMIF(K10:K15,">0")/MAX(1,COUNTIF(K10:K15,">0"))
 
Upvote 0

Forum statistics

Threads
1,216,099
Messages
6,128,823
Members
449,470
Latest member
Subhash Chand

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