I have a table with about 2500 records in it. In VBA, I am reading in a recordset, performing calclations and add more information to each record. Following is the code. The problem is that about half way through, I get an error
Run-time error '3218':
Couldn't update
set db = currentdb
set rec = db.openrecordset
do while not rec.eof
[calculations]
rec.edit
[new info]
rec.update
loop
Run-time error '3218':
Couldn't update
set db = currentdb
set rec = db.openrecordset
do while not rec.eof
[calculations]
rec.edit
[new info]
rec.update
loop