I have a database that logs some information from another system that is entered manually by the user. Currently I have a subform showing the list of IDs used. Is there a simple way to show a list of numbers not used (so they are available) without having to create a table with every number from 1 to 1200? So for example, say I have the following IDs used:
I would want the following IDs to appear as not used:
Maybe something like
I know that wouldn't work, but that is kind of what I'm hoping for.
Code:
1 2 3 5 8 9 10
Code:
4 6 7 11 ...
Code:
Between 1 And 1200 And Not In [Used IDs]
Comment