Could anybody please help me with a problem I have come across.
I am currently working on a project database to distinguish lap times from a bunch of athletic competitors. The database includes 2 tables, namely, Competitors and LapTimes. In the LapTimes table there are 2 fields which simply collect the competitors race number and the time they were recorded at the end of each lap, this is done automatically as they pass the finish line at the end of each lap.
With the query I have at the moment, named Laps it lists each competitor and each time they have recorded on a separate row. In the example database each competitor has completed 4 laps, so they are listed 4 times with each of their relevant lap times. Is it possible to separate each of the laps into different queries for each lap, so that it would be possible to view all competitors and times for lap 1 in one query, competitors and times for lap 2 in another query, and so on for each lap.
The number of laps may vary for different races.
I had thought of a query that would add a field named LapCount with a number 1 entered if the race number has not yet been recorded in the LapTimes table, a number 2 if it is already in the list once, a number three if it is already in the list twice, and so on. This would then enable me to distinguish separate laps in different queries.
However I am not sure if this is possible or how to achieve it. I would be very grateful if anybody could help me to overcome this problem. I have attatched an example of the database I am working on.

I am currently working on a project database to distinguish lap times from a bunch of athletic competitors. The database includes 2 tables, namely, Competitors and LapTimes. In the LapTimes table there are 2 fields which simply collect the competitors race number and the time they were recorded at the end of each lap, this is done automatically as they pass the finish line at the end of each lap.
With the query I have at the moment, named Laps it lists each competitor and each time they have recorded on a separate row. In the example database each competitor has completed 4 laps, so they are listed 4 times with each of their relevant lap times. Is it possible to separate each of the laps into different queries for each lap, so that it would be possible to view all competitors and times for lap 1 in one query, competitors and times for lap 2 in another query, and so on for each lap.
The number of laps may vary for different races.
I had thought of a query that would add a field named LapCount with a number 1 entered if the race number has not yet been recorded in the LapTimes table, a number 2 if it is already in the list once, a number three if it is already in the list twice, and so on. This would then enable me to distinguish separate laps in different queries.
However I am not sure if this is possible or how to achieve it. I would be very grateful if anybody could help me to overcome this problem. I have attatched an example of the database I am working on.
