sychoangel
Registered User.
- Local time
- , 22:32
- Joined
- Jul 4, 2008
- Messages
- 20
Hello!
I have created an update query that finds characters in a column and replaces them with something else... e.g.
Field: TITLE
Table: DETAILS
Update to: Replace([TITLE],"{","")
That all works ok... but how can I do an update query to replace a character with a carriage return... I have tried
Replace([TITLE],"{",Chr$(10)) (all with & without the $)
Replace([TITLE],"{",Chr$(11))
Replace([TITLE],",{,Chr$(13))
The carriage return (or a shift+enter) needs to display both when the data is displayed on a form & also when printed in a report.
the TITLE field is set to memo....
Any help is greatly appreciated
SYCH
I have created an update query that finds characters in a column and replaces them with something else... e.g.
Field: TITLE
Table: DETAILS
Update to: Replace([TITLE],"{","")
That all works ok... but how can I do an update query to replace a character with a carriage return... I have tried
Replace([TITLE],"{",Chr$(10)) (all with & without the $)
Replace([TITLE],"{",Chr$(11))
Replace([TITLE],",{,Chr$(13))
The carriage return (or a shift+enter) needs to display both when the data is displayed on a form & also when printed in a report.
the TITLE field is set to memo....
Any help is greatly appreciated
SYCH