Does anyone know of an easier way to append an array
of data to a field rather then a loop.
Situation is I have a recordset with 3 fields...I have an array with 2000 elements in it.
Right now I use the following
is there a way to just insert all 2000 elements in one fell swoop?
of data to a field rather then a loop.
Situation is I have a recordset with 3 fields...I have an array with 2000 elements in it.
Right now I use the following
Code:
For AddThem = lbound(myarray) to ubound(myarray)
therecordset.AddNew "Field3", myArray(addThem)
next
is there a way to just insert all 2000 elements in one fell swoop?