A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi @William Auld,
Three alternative formulas which are dynamic formulas, so these formulas are applied only once and do not need to be dragged down.
In cell F2 you can apply one of the following two formulas:
=BYROW(E2:E22, LAMBDA(a, SUMIF(B2:B22, a, C2:C22)))
=BYROW((E2:E22 = TOROW(B2:B22)) * TOROW(C2:C22), SUM)
Also if you want you can apply this formula:
=GROUPBY(B1:B22, C1:C22, SUM, 3, 1)
This formula gives results only for the unique names of the Players that you have given in column B. I have applied this formula in cell H1.
HTH
IlirU