In a MS Access query it's straight forward when you want to return record number 100 as in:
Is it possible, in this instance of the query, to ask for and return record number 100 and 135 and 206 and 310 and so on?
If the answer is "yes", how is it done?
dakota1606
Code:
SELECT * FROM Depreciation WHERE (((Depreciation.ID)=300));
If the answer is "yes", how is it done?
dakota1606
Comment