D
Duane Hookom
Create a query that returns one record:
SELECT TOP 1 POINTS as MaxPoints
FROM tblLeagueTable
ORDER BY POINTS DESC, TEAM;
This should return one record with one field containing the top number of
points. Add this query to your report recordsource and don't join it to any
other table. Add the MaxPoints column to your query so you can subtract
Points from it.
SELECT TOP 1 POINTS as MaxPoints
FROM tblLeagueTable
ORDER BY POINTS DESC, TEAM;
This should return one record with one field containing the top number of
points. Add this query to your report recordsource and don't join it to any
other table. Add the MaxPoints column to your query so you can subtract
Points from it.