Conditional Averaging - 2 Conditions

P

pmguerra

Can anyone help?

I want to average a column of data, based on two criteria, each one i
its column.
Eg.: I want to average column C only if collumn A="Place A" and Collum
B="Material X".

I've tried ARRAY, IF and AND functions but no result...

HELP!!!

Paul
 
J

JE McGimpsey

One way (array entered):

=AVERAGE(IF((A1:A1000="Place A")*(B1:B1000="Material X"),C1:C1000))
 
Top