Thanks for your response,
I can see the number of games a team is behind in the form but I would like to have that data in the query so I can access it from a list box generated from this query.
Code:
SELECT SportsMLBLeagueQry.ID, SportsMLBLeagueQry.Div, SportsMLBLeagueQry.Team, SportsMLBLeagueQry.W, SportsMLBLeagueQry.L, SportsMLBLeagueQry.League, SportsMLBLeagueQry.WinLoss, [W]+[L] AS GamesPlayed, SportsMLBLeagueQry.Updated, SportsMLBLeagueQry.NickName, DCount("*","SportsMLBALCPlayoffQry","WinLoss>" & [WinLoss])+1 AS Rank
FROM SportsMLBLeagueQry
WHERE (((SportsMLBLeagueQry.Div)="AL Central") AND ((SportsMLBLeagueQry.League)="AL"))
ORDER BY SportsMLBLeagueQry.WinLoss DESC;
Jim O