V
vtj
I have a table that has fields named 'item1', 'item2'...
I want to combine them together but the rst1![cntr] returns an error that
the item is not in the collection. i know that the recordset has a field
named item1 and that there is a value contained in the field of the record
being addressed.
For counter = 1 To 20
cntr = "item" & counter
rst1!item21 = (rst1!item21 & rst1![cntr])
Next
How can I address the 'rst1![cntr]' at the end of line 3 above to retrieve
the value contained in the table?
Thanks for your help!!
I want to combine them together but the rst1![cntr] returns an error that
the item is not in the collection. i know that the recordset has a field
named item1 and that there is a value contained in the field of the record
being addressed.
For counter = 1 To 20
cntr = "item" & counter
rst1!item21 = (rst1!item21 & rst1![cntr])
Next
How can I address the 'rst1![cntr]' at the end of line 3 above to retrieve
the value contained in the table?
Thanks for your help!!