If you have a identity column(if using SQL Server) or Autoincrement column (if using MS Access). Retrieve this ID column by using a mod of 2. If the mod is 0 then that is even if mod is not 0 then it is odd. <br><br>In case you don't know what MOD is, it is the remainder of division. So you would have to loop through the recordset, do ID MOD 2, if the answer is 0 (this is your even record) and if the answer is NOT 0 (this is your odd records). <br><br>LuvASP.