I am writing a routine to populate the fields in a table. The fields are named Field1, Field2, etc. I used the following code:
For i = 3 to 153
with rst1
.edit
!Field(i) = i
.update
I keep getting an item not found in database errow. I also tried assigning Field(i) to a variable called FieldName and used "FieldName" in place of Field(i). Same result. Please help and thanks
Bill
For i = 3 to 153
with rst1
.edit
!Field(i) = i
.update
I keep getting an item not found in database errow. I also tried assigning Field(i) to a variable called FieldName and used "FieldName" in place of Field(i). Same result. Please help and thanks
Bill