You haven't given us much to go on, but you'll probably need a query as the
report's RecordSource which sums the ptsearned values per player and includes
a criterion of the summed points being >=5 in its HAVING clause, e.g.
SELECT [player], SUM([ptsearned]) As TotalPoints
FROM [YourTable]
GROUP BY [player]
HAVING SUM([ptsearned]) >=5;
If you want to include other fields on which the query can't be grouped, e.g.
the individual points earned by the player per game then it’s a little more
complex.
If you need more help post back with details of the table(s) and fields
involved.
Ken Sheridan
Stafford, England
Each player earns points for victories (ptsearned). I would like to print on
a report only those players who have earned 5 or more points? Using Access
2007.
Carter
--
Message posted via AccessMonster.com
.