Given the nature of your data and the fact you want to do this as efficiently as possible with formulae (rather than using a Pivot) I'd suggest:
G1:
Account Name
[rather than name]
G2:
=IFERROR(IF(LOOKUP(REPT("Z",255),$E$1:$E$1000)=$G1,"",LOOKUP($G1,$E$1:$E$10000,$E$2:$E$10001)),"")
copied down as nec.
H2:
=IF($G2="","",SUMIF($E:$E,$G2,$C:$C))
copied down as nec.
I2:
=IF($G2="","",COUNTIF($E:$E,$G2))
copied down as nec.
The LOOKUP above assumes that your data is sorted by Account Name which would seem to be the case given sample - used in this form it is an extremely efficient formula (binary search)
Calculation time for your matrix using the above would be around 0.002 seconds.
Bookmarks