Quote:
Originally Posted by Mihail
I need to eliminate the manual line break(s) and your macro don't do this.
|
That's easily remedied by inserting:
Code:
'Replace manual line breaks with paragraph breaks
.Text = "[^]{1,}"
.Replacement.Text = "^p"
.Execute Replace:=wdReplaceAll
before:
Code:
'Replace single paragraph breaks with a space
Quote:
More, it transform my text in something unreadable.
|
Did you read the caveat in the link about the basic format requirements of the text to be converted? Does your text conform?
Quote:
About the last code you give me, I'll try to implement it.
Where ? Hope I'll be able to understand.
|
Surely you can at least read your own code, even if you don't understand it...