View Single Post
 
Old 11-06-2012, 01:49 AM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,383
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

The problem doesn't have anything to do with intra-paragraph returns, but with the fact you have empty paragraphs. To work around that, change:
.Paragraphs(i).Range.Words.First = i
to:
If .Paragraphs(i).Range.Words.Count > 2 Then .Paragraphs(i).Range.Words.First = i
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote