I would like to use a memo field to list data obtained through the use of a text box. Multiple record from entries -- dumped into one 'memo field' for use in a report. I have exausted all of my resources....... Please help
I'm not sure that understand completely but I think you want to concatenate the data from one column in several (or all) rows of a table into a memo column in another table. If that is the case, then the following should give you an idea about how to proceed.
This query updates TableA memo column by concatenating values from the text column on TableB. Use the NZ function to eliminate NULL values.
UPDATE TableA, TableB
SET TableA.MyMemo = NZ([TableA.MyMemo],"" & NZ(TableB.MyText, ""
WHERE (<your criteria, if any>);
This query works in Access 2000. Terry L. Broadbent - DBA
Computing Links:
faq183-874 contains "Suggestions for Getting Quick and Appropriate Answers" to your questions in the SQL Server forum. Many of the ideas apply to all forums.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.