Ok I made an append query that looks like this
INSERT INTO Classes ( site, type, s_date, coach1, coach2, coach3 )
SELECT DISTINCT Both.Site, Both.Type, Both.Date, Both.RiderCoach1, Both.RiderCoach2, Both.RiderCoach3
FROM [Both];
but when I run it, it skips filling the coach1 row but fills all other rows anyone got an idea why it might do that?? Thanks in advance.
P.S.
As a note if I run
SELECT DISTINCT Both.Site, Both.Type, Both.Date, Both.RiderCoach1, Both.RiderCoach2, Both.RiderCoach3
FROM [Both];
just to see if it gets the RiderCoach1 row so it can put it in the coach 1 row. It does get the names.