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
 
Back
Top