Access is pickier than some other applications.
To have a new line, you must have a Line Feed (which is Ascii 13) AND a
Carriage Return (Ascii 10), in that order.
If you, say, copied and pasted from some application that only requires a
Line Feed or a Carriage Return, you'll get the behaviour you're describing.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
>I have an address field and in the form's property of "Enter Key Behavior",
>I
[quoted text clipped - 15 lines]
> has
> been done via gui's/menus, etc. Thanks!
Tracey_Gigatta - 07 May 2008 19:14 GMT
Thank you, but is there a way I can fix the data in this field? I recall how
this happened. I had an earlier issue where I had corrupt records. In
fixing that, I had exported data into excel, then imported back into Access.
When doing so, it did exactly what you said below.
> Access is pickier than some other applications.
>
[quoted text clipped - 23 lines]
> > has
> > been done via gui's/menus, etc. Thanks!
John Spencer - 07 May 2008 20:15 GMT
Try using REPLACE in an update query.
UPDATE [yourTable]
SET [Your field Name] = Replace([Your field Name], Chr(10),Chr(13) & Chr(10))
WHERE [Your field Name] Like "*" & Chr(10) & "*"
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
> Thank you, but is there a way I can fix the data in this field? I recall how
> this happened. I had an earlier issue where I had corrupt records. In
[quoted text clipped - 28 lines]
>>> has
>>> been done via gui's/menus, etc. Thanks!