J
Justin
I'm trying to collect data for a multiple record update and place it into a
memo field. The application steps through a record set compiling the data to
a text box on a form
while not eor
Me![Text1] = Me![Text1] & ", " & Me![RecordData]
Wend
This works fine. When I look at Me![Text1] after the While loop all the
data is correct. I then place this filed into a table using a simple append
query, but when I look in the table the information is truncated with many
non-alpha charaters at the end.
Any thoughts?
memo field. The application steps through a record set compiling the data to
a text box on a form
while not eor
Me![Text1] = Me![Text1] & ", " & Me![RecordData]
Wend
This works fine. When I look at Me![Text1] after the While loop all the
data is correct. I then place this filed into a table using a simple append
query, but when I look in the table the information is truncated with many
non-alpha charaters at the end.
Any thoughts?