While adding data to a record set, I use something like
rst![Plot1] = some variable
rst![Plot2] = some variable
......
rst![Plot99] = some variable
The rst![Plot1] , rst![Plot2] etc. are manually typed in and it gets
tedious typing a lot of these.
If there some way to use a loop to setup the field names? Something like
For x = 1 to 99
rst![Plotx] = some variable(x)
next x
rst![Plot1] = some variable
rst![Plot2] = some variable
......
rst![Plot99] = some variable
The rst![Plot1] , rst![Plot2] etc. are manually typed in and it gets
tedious typing a lot of these.
If there some way to use a loop to setup the field names? Something like
For x = 1 to 99
rst![Plotx] = some variable(x)
next x
Comment