G
Guest
Attempting to clean a large table in Access 2000, I've replaced thousands of
old HTML line-break tags with VBA line breaks, using an Update Query, as in:
Replace ([Text]), "<BR><BR>", Chr(13) & Chr(10) & Chr(10))
In many cases these line breaks have added to each other, so now I'm left
with hundreds of line breaks too many. Where three or more VBA line breaks
follow each other one after another, I have to reduce each group of three,
four, or five Chr(10)s to just two at a time, leaving a standard single-line
space between each paragraphs.
This is my first attempt to use any programming language at all, so I need
very basic help.
With thanks,
Philip
old HTML line-break tags with VBA line breaks, using an Update Query, as in:
Replace ([Text]), "<BR><BR>", Chr(13) & Chr(10) & Chr(10))
In many cases these line breaks have added to each other, so now I'm left
with hundreds of line breaks too many. Where three or more VBA line breaks
follow each other one after another, I have to reduce each group of three,
four, or five Chr(10)s to just two at a time, leaving a standard single-line
space between each paragraphs.
This is my first attempt to use any programming language at all, so I need
very basic help.
With thanks,
Philip