Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

adding text to a memo field using a text box / query? 1

Status
Not open for further replies.

traffas

Programmer
Feb 27, 2002
42
US
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

Many Thanks.......

Traffas
 
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 &quot;Suggestions for Getting Quick and Appropriate Answers&quot; to your questions in the SQL Server forum. Many of the ideas apply to all forums.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top