G
Guest
This is supposed to leave me with numbers 1 to 12 that have not been used
i.e. if 3 has been used the combo box should only show 1,2,4,5 etc
Pairs is a tbl with numbers 1 to 12
TestRecord is a tbl with 12 empty records
SELECT Pairs.Pairs, TestRecord.TestRecord
FROM Pairs LEFT JOIN TestRecord ON Pairs.Pairs = TestRecord.TestRecord
WHERE (((TestRecord.TestRecord) Is Null));
Hope that made sense
i.e. if 3 has been used the combo box should only show 1,2,4,5 etc
Pairs is a tbl with numbers 1 to 12
TestRecord is a tbl with 12 empty records
SELECT Pairs.Pairs, TestRecord.TestRecord
FROM Pairs LEFT JOIN TestRecord ON Pairs.Pairs = TestRecord.TestRecord
WHERE (((TestRecord.TestRecord) Is Null));
Hope that made sense