May need to add this:-
If you want to retrieve every 4th records from a particular order, you need to sort the records in that order in a make-table query to create a temporary table. Then add the autonumber ID field in the temp table and run the query with Where [ID] mod 4 = 0
The basic principle is to number the records in the ID field with 1,2,3,4,5,.... etc
before applying ID mod 4 = 0