How to make new line character active in an Access report?

D

Danney

Memo Daya type field contains a new line character. The character is
displayed when the report is produced and the first character of the new line
overprints on top of it. Like the action of a backspace. It does not go to a
new line.
Are there any tricks to solving this??
 
F

fredg

Memo Daya type field contains a new line character. The character is
displayed when the report is produced and the first character of the new line
overprints on top of it. Like the action of a backspace. It does not go to a
new line.
Are there any tricks to solving this??

What is the "NewLine" character?
In Access, a new line requires both a carriage return character and a
new line character, chr(13) & chr(10), in that order.

Perhaps you imported the data from Excel for example, which uses just
chr(10).
If that is the case, run an update query on that field.

Update YourTable Set YourTable.[MemoName] =
Replace([MemoName],chr(10),chr(13) & chr(10));
 

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

Top