Re: VBA code/ selecting every 3th record
Thanks, but
SELECT *
FROM Employees
WHERE [ID] Mod 3 = 0;
works when ID is autonumber for example.
What i need is select this every 3th record from "table(Employees)" and insert into "table (EmployeesCopy) using Access module.
thanks a lot