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

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
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,947
Messages
6,122,411
Members
449,081
Latest member
JAMES KECULAH

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