A family of Microsoft relational database management systems designed for ease of use.
You'll need to find out what the ASCII value of that non-printable char is. Here is one way to do that: use DLookup to get the value, then use Mid$ to get a character in that value, and then Asc to get the ASCII value of that character. For example in the Immediate window you could write:
?Asc(Mid$(DLookup("myAddressField", "myTable", "ID=1"),1,1))
This would get the first characters ASCII value. Change it to get the second, third etc char until you get to the non-printable one. My guess is you will get a value of 9, 10, or 13.
Then write an update query to replace that character with CrLf. Something like:
update myTable set myAddressField =Replace(myAddressField, Chr(9), Chr(13) & Chr(10))
(replace the 9 with whatever value you find)
-Tom. Microsoft Access MVP