I have this Select statement in my query that produces the results shown in the attached pdf
I need to exclude any row, that has a single entry in the SpecGrpUnion.ID (ID) column
Player_ID LastName FirstName ID
********* ********** ********* ****
13 Bonacci Domminic 1 single entry(1) = exclude
80 Maher Mike 25 single entry(25) = exclude
SELECT Players.Player_ID, Players.LastName, Players.FirstName, Players.Captain, Players.GoldPlayer, Players.Handicap, SpecGrpUnion.ID, Roster_Temp_04092025.ID
FROM (Players INNER JOIN SpecGrpUnion ON Players.Player_ID = SpecGrpUnion.Player) INNER JOIN Roster_Temp_04092025 ON Players.Player_ID = Roster_Temp_04092025.Player_ID
WHERE Join_Seperate = True And Player_Attend = True And #4/9/2025# >= DateStart And #4/9/2025# <= DateEnd
ORDER BY SpecGrpUnion.ID, Players.Captain, Players.Handicap;
See attached database
Any help will be appreciated, still learning
Thanks Mike