Thread: AVERAGEIF
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default AVERAGEIF

Try this..

=AVERAGEIFS(B1:B10,A1:A10,"Mexico",B1:B10,"0")

--
Jacob (MVP - Excel)


"Jacob Skaria" wrote:

Try AVERAGEIFS()

or the array formula
=AVERAGE(IF((A1:A10="Mexico")*(B1:B100),B1:B10))

--
Jacob (MVP - Excel)


"Sasikiran" wrote:

Dear,

I am struggling with AVERAGEIF formula which calculates the average of data
of one location without including 0 values.

In the below example, would require a formula to calculate the average of
the data which corresponds for MEXICO excluding 0 values.

A1 B1
MEXICO 5
CHICAGO 89
TEXAS 10
MEXICO 0
TEXAS 45
MEXICO 15
CHICAGO 0
TEXAS 15
MEXICO 0

Please help..