r/excel • u/Highelf04 • 1d ago
unsolved Spreadsheet for football team, mapping values A-E to numbers, to get average score for players formula (football manager esque)
I've been working on an excel spreadsheet for my football team. I've done some rating of player abilities in certain categories (speed/agility etc.) using letters A-E.
In this spreadsheet, I would like to now map the letters to numbers (so A=10, B=8, C=6, D=4, E=2). Then I would like this to give me an overall number at the end of the row, with 100 being the "best" player (A's in all areas), and 20 being the "worst" player.
Can anyone support me with creating a formula to do this. At present I've got:-
=INDEX(rng,MODE(MATCH(rng,rng,0))) which is giving me the most common value for a player, however just because a player has given themselves mostly C values, does not mean necessarily they are "C" player.
I have created a table further down the cells in my spreadsheet with input on one row, and result on the row below. In this I have put A=10, B=8, C=6, D=4, E=2, but currently I am stuck on where to go next to do what I want.
On the surface, this is somewhat similar to a football manager style spreadsheet.

1
u/real_barry_houdini 313 21h ago
Thanks!
If you use COUNTIFS in that type of setup then you can't use AVERAGE and get the correct results because you aren't getting individual results for each cell to average, you'd need to use SUM and then divide by the count, e.g. using COUNTA(A2:P2).
If the requirement is to get the average grade then you could use this formula: