I have an access database I am creating to run a golf tournament. In it there is a table that will contain a Team ID and the score for each of 18 holes as TeamID, Hole1, Hole2, Hole3... as records. What I would like to do is to create a query that will show me the records with the TeamID for each hole that has a unique score (a Skin) thus it will need to look at each column (Hole1 for example) and see if there is a unique score and if so display the record if there was no unique record display nothing. I need it to repeat this for each "Hole" column until it checks all 18 hole columns. Output would be something like:
Team1 Hole 1
Team5 Hole 8
I expect there to be very few records returned.
I would appreciate any thoughts on how to go about creating this of a query? I don't know if it can be done in one query or will need to be a series of quires with a union query to display the final results.
Thank you in advance if you would like to take a shot at helping me. I play with access like I play golf...not a pro at either.