Hi Kjv,
The Info. comes from the following SQL:
SELECT tblPlayer.PPlayerId, tblPlayer.PPlayer, Sum(qryGameScore.QPoints) AS Total FROM tblPlayer INNER JOIN qryGameScore ON tblPlayer.PPlayerId=qryGameScore.GPlayerId GROUP BY tblPlayer.PPlayerId, tblPlayer.PPlayer;
I would like the names of the players to be displayed in order ie: the person with the most points at the top of the list and a number listing them at the side. I hope this makes it clearer.