P polina Registered User. Local time Today, 12:02 Joined Aug 21, 2002 Messages 100 Sep 17, 2002 #1 Hi, I need to loop through all records in the table in order to assign the value to the field Please suggest the code Thanks
Hi, I need to loop through all records in the table in order to assign the value to the field Please suggest the code Thanks
G goie Guest Sep 17, 2002 #2 something like this: set Recordset = Database.OpenRecordset("Table") With Recordset While not .EOF 'Carry out operations .Movenext wend end with
something like this: set Recordset = Database.OpenRecordset("Table") With Recordset While not .EOF 'Carry out operations .Movenext wend end with