A family of Microsoft relational database management systems designed for ease of use.
Assuming that your Table has a design like this
ID -->Autonumber
Field -->e.g Short Text
..lets call it Table1
It should like this
1 A
2 B
3 C
5 D
and you want to know the missing fields
then just make a copy paste of your table...just call it Table2
1 A
2 B
3 C
5 D
no change the ID from AutoNumber to Number
save and close
and again open Table and Add One more Column e.g NewID and set it to AutoNumber
save the new design
Drag both Table1 & Table2 to Query Designer
Copy paste this SQL
SELECT Table2.newID, Table1.ID
FROM Table1 RIGHT JOIN Table2 ON Table1.ID = Table2.newID
WHERE (((Table1.ID) Is Null));
This will show all the orphaned entries...
Only hiccup is that if the No of Records < last Missing Record then it won't show up.
e.g you have 1000 records and the last Missing Record is 1001 then it won't show up because the AutoNumbering in Table will reach up to 1000.