Does Excel 2000 have AVERAGEIF?

Vintage79

Board Regular
Joined
May 29, 2007
Messages
185
Office Version
  1. 2019
Platform
  1. Windows
Hi guys,

I have a simple problem. I want a formula to calculate the average in a column, but for it to disregard any cell that shows a zero. It's so simple that I decided to search rather than post - here is what I came up with:

=AVERAGE(IF(V6:V57,">0"))

Unfortunately this doesn't work for me - I get #VALUE! instead. I couldn't find the function in the help file so I think that my version must be too old. Is there a way around this? Perhaps combining AVERAGE with IF?

Thanks a lot!


Martin
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hi,

Try:

=AVERAGE(IF(V6:V57>0,V6:V57))

Which needs committing with Ctrl+Shift+Enter.

Matty
 
Upvote 0
Array enter the following with Ctrl+Shift+Enter not just enter

=AVERAGE(IF(V6:V57>0,V6:V57))
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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