error inserting into table

R

ria

Sub test()
For Words = 1 To 5
INSERT INTO test SELECT * FROM NewCustomers;

Next Words
End Sub
 
M

Michel Walsh

Hi,


CurrentDb.Execute "INSERT INTO .. . ", dbFailOnError



Hoping it may help,
Vanderghast, Access MVP
 
Top