Inserting multiple records into a table

JIMB

New member
Local time
Today, 03:46
Joined
Oct 21, 2010
Messages
5
Is it possible to loop through a record set and loading a new row to a table without getting the message " you are about to append 1 row'

I want to loop through 4,000 records do some calcualtions and load that into a new row in a different table.

Thanks,
 
It sounds like you're using RunSQL. You can switch to CurrentDb.Execute or use SetWarnings before and after your insert.
 
Paul,

Thanks so much. CurrentDb.Execute did what i wanted.
 

Users who are viewing this thread

Back
Top Bottom