I need to know the average probability of sales against the sales executives
=SUMPRODUCT((A1:A100="a")*(B1:B100))/COUNTIF(A1:A100,"a")
Where 'a' is the name of your sales exec and Column B is what to sum.
Mike
No this is not working I am getting a #VALUE! error
See below
=SUMPRODUCT((A1:A100="George de Bon")*(D1:D100))/COUNTIF(A1:A100,"George de
Bon")
Example of data:
Program Manager Customer Contact Opportunity Value Probability
George de Bon TimTaylor R 300,000 50%
=SUMIF(B2:B10,1,A2:A10)/=COUNTIF(B2:B10,1)
In this example A2:A10 contains numbers to abe averaged, B2:B10 contains
values to evaluate, the formula return average of A2:A10 where B2:B10 =1
Regards,
Stefi
„Sassy” ezt írta:
ctrl+shift+enter, not just enter
For Excel 2007:
=AVERAGEIF(A1:A100,"George de Bon",D1:D100)
Just normal enter
Mike
Try this array formula** :
=AVERAGE(IF(MID(A1:A10,3,1)="A",B1:B10))
** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.
--
Biff
Microsoft Excel MVP
"Plodder" <Plo...@discussions.microsoft.com> wrote in message
news:C00A12FD-F553-4C25...@microsoft.com...