Average excluding zero

desoriente

New Member
Joined
Dec 31, 2010
Messages
14
I need to average a list of numbers, excluding the number zero. Example list: 1, 0, 2, 2, 0, 5, 0.

How can you average 1, 2, 2, 5 AND exclude the zeros from calculation?

Thanks!
 

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.
Hi there
Use
Code:
=SUM(A1:A1000)/COUNTIF(A1:A1000,">0")
 
Upvote 0
I figured it out from your example:
=SUM(C5:R5,C38:Q38)/(COUNTIF(C5:R5,">0")+COUNTIF(C38:Q38,">0"))

Thank you for your prompt response! :)
 
Upvote 0
Ok
Glad you got it sorted. Cheers.
 
Upvote 0
Or as an array formula confirmed with ctrl+shift+enter

=AVERAGE(IF(C5:R5<>0, C5:R5), IF(C38:Q38<>0, C38:Q38))
 
Upvote 0

Forum statistics

Threads
1,216,380
Messages
6,130,274
Members
449,570
Latest member
TomMacca52

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