Append data to memo field

  • Thread starter Thread starter Abay
  • Start date Start date
A

Abay

Hello .. I have a number of different fields on a form that I would like
(sometimes) to append (their content) to data already in a Memo type field.
My idea is to create a command button to do the work, but would like some
help on the code for same.

Any help would be much appreciated.

Thanks!
Abay
 
Abay,

The equivalent of this...
Me.NameOfMemo = Me.NameOfMemo & " " & Me.NameOfTextbox

Or, if it's going onto a new line in the memo field, like this...
Me.NameOfMemo = Me.NameOfMemo & vbCrLf & Me.NameOfTextbox
 
Many thanks, very much appreciated . ... Abay

Steve Schapel said:
Abay,

The equivalent of this...
Me.NameOfMemo = Me.NameOfMemo & " " & Me.NameOfTextbox

Or, if it's going onto a new line in the memo field, like this...
Me.NameOfMemo = Me.NameOfMemo & vbCrLf & Me.NameOfTextbox
 

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

Similar Threads


Back
Top