
Originally Posted by
davegri
Can you post an image of the report (or a pdf of the report)?
It could be that you are sorting on fields in addition to the average, and those sorts have higher priority than the averages.
Here's a screenshot of the report design and the report preview.
Here is the query. All fields in tbl)standings are numeric the only field that is not numeric in this report is the Teams.team field which is the team name.
Code:
SELECT Teams.Team, tbl_standings.Wins, tbl_standings.losses, tbl_standings.Ties, ([wins]+([ties]*0.5))/([wins]+[Losses]+[Ties]) AS PCT, tbl_standings.[Total Pins]
FROM tbl_standings INNER JOIN Teams ON tbl_standings.TeamID = Teams.ID
ORDER BY ([wins]+([ties]*0.5))/([wins]+[Losses]+[Ties]) DESC;