I have a table of Premiership Football teams, and another table of their squad. And I have recorded different stats per player per team. So I have two tables: TEAM and PLAYER
# TEAM
1 Man U
2 Liverpool
3 Tottenham
TEAM # PLAYER SCORED ASSIST ETC
2 Gerrard 4 5
3 Soldado 2 7
2 Sterling 2 3
The TEAM table has the individual players from each team in a subtable for each team. From this I have created a report from the PLAYER table to show the players name, team, stats etc. What I do need though is to number the records per amount of records in that team in the report itself, almost like page numbers. For instance, Liverpool say have 20 players, I would like it show Gerrard 9/20, Sterling 18/20. It is one record per page. At the moment, all I can get is their record number, of all the players in the database, like 9/500.
What is the best way of doing numbering records per subgroup(each team)? I thought it would be more simple but doesn't look like it.