Realistically, you're violating database normalization rules by putting
multiple pieces of data into a single field. You'd be best off storing each
comment as a separate line in a second table related to your existing table.
If you cannot (or will not) correct your design, you can add a carriage
return/line feed combination to the end of the memo field after you save it
using code like the following in the memo field's AfterUpdate event:
Private Sub YourMemoFieldControl_AfterUpdate()
Me.YourMemoFieldControl = Me.YourMemoFieldControl & vbCrLf
End Sub
(Replace YourMemoFieldControl with the correct control name)
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
"Timothy Millar" <(E-Mail Removed)> wrote in message
news:EE31F274-13CA-4496-A65D-(E-Mail Removed)...
>I have a memo field that end users enter in data. During the course of a
>day
> multiple users would enter in additional or updated information. When the
> end users enters the memoe field I have the date and time automatically
> populate at the end of the previous users entry. I now need a way to
> enter
> in a space or line so there is a break between the previous user's entry
> and
> the current user's entry. Thank you