I have a report based on a query:
Each time I run the report I get 5 different winners. So I want to display the name and location of the winners on a separate page of the same report (to post on a bulletin board).
So, my first page is all set - I display all of the selected items in the query for the staff.
Then I would like a second page to display:
1.TOP 5 qfltWALKParticipants.FullName AS FullName
2. qfltWALKParticipants.LocW
to post on a bulletin board.
I've tried to do this with page breaks, with subreports, to no avail. I'm a newbie - is there an easy way? Or if not, is there ANY way to do this?
Thanks so much for any help or direction.
Code:
SELECT TOP 5 qfltWALKParticipants.FullName AS FullName, qfltWALKParticipants.WalkLoc, qfltWALKParticipants.LocW, qfltWALKParticipants.Dept, qfltWALKParticipants.LocFC1, qfltWALKParticipants.LocFC2, qfltWALKParticipants.PhoneW, qfltWALKParticipants.PhoneH, qfltWALKParticipants.Shirt, qfltWALKParticipants.PID
FROM qfltWALKParticipants
ORDER BY Rnd([PID]);
Each time I run the report I get 5 different winners. So I want to display the name and location of the winners on a separate page of the same report (to post on a bulletin board).
So, my first page is all set - I display all of the selected items in the query for the staff.
Then I would like a second page to display:
1.TOP 5 qfltWALKParticipants.FullName AS FullName
2. qfltWALKParticipants.LocW
to post on a bulletin board.
I've tried to do this with page breaks, with subreports, to no avail. I'm a newbie - is there an easy way? Or if not, is there ANY way to do this?
Thanks so much for any help or direction.