dhir
Create a pivot table from the data. Put Name in the row field, Month
in the column field, and Sum of Score in the data area. You will have
at table that looks just as you want it.
Good luck.
Ken
Norfolk, Va
> Assuming data in Sheet1 and new table in sheet2, with names in column A and
> months in row1:
[quoted text clipped - 39 lines]
>
> - Show quoted text -
ShaneDevenshire - 16 Jun 2007 07:19 GMT
Hi,
I like the pivot table solution but if you want to use sumproduct you can
also write it:
=SUMPRODUCT(N($A$11:$A$22=F$10),N($B$11:$B$22=$E11),$C$11:$C$22)
=SUMPRODUCT(($A$11:$A$22=F$10)*($B$11:$B$22=$E11)*$C$11:$C$22)
=SUM(($A$11:$A$22=F$10)*($B$11:$B$22=$E11)*$C$11:$C$22) array entered

Signature
Cheers,
Shane Devenshire
> dhir
>
[quoted text clipped - 50 lines]
> >
> > - Show quoted text -