Can I add text to a memo field

  • Thread starter Thread starter Robin Chapple
  • Start date Start date
R

Robin Chapple

I have a memo field that carries "Notes" about each member.

At times I need to add the same comment to many members selected by a
criteria in the query. Is it possible to use an update query that will
retain the existing contents and add a common comment to the qualified
records?

Thanks,

Robin
 
I've never done this, but it would seem that if you used some code to fetch
the existing data, add a couple of carriage returns, and then add the new
comments --- it just might work!

A = A + Chr(13) + Chr(13) + B
 
UPDATE MyTable
SET MyMemoField = MyMemoField &
" My New Text";
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top