1. Vertical alignment on the Layout tab of Page Setup. If it's anything
other than "Top," you may get strange results.
2. Spacing Before/After in Format | Paragraph. If there's a paragraph return
at the end of each line (as there might be in an imported text file), then
each line is a paragraph, and interparagraph spacing would apply.
--
Suzanne S. Barnhill
Microsoft Word MVP
Words into Type
Fairhope, Alabama USA
"Stephanie" <smo...@lundygroup.com> wrote in message
news:126ef01c1ad86$96543b10$9be62ecf@tkmsftngxa03...
Also, it sounds like you're not using styles. You should learn all you can
about using them.
--
Suzanne S. Barnhill
Microsoft Word MVP
Words into Type
Fairhope, Alabama USA
"Tim Murray" <NoS...@techknowledge-no-spam-corp.com> wrote in message
news:eXMko3ZrBHA.2056@tkmsftngp03...
One of my copyediting macros forcibly removes all multiple spacing
from a document (does NOT do tabs etc, that's a different one):
Public Sub Remove_Double_Spacing()
With Application
.ScreenUpdating = False
ReReplaceAll " ", " "
ReReplaceAll " ", " "
.ScreenUpdating = True
End With
End Sub
Private Sub ReReplaceAll(OldText As String, NewText As String)
Dim r As Range
Set r = ActiveDocument.Range
r.Collapse
With r.Find
.Text = OldText
.Replacement.Text = NewText
.Wrap = wdFindContinue
While .Execute(Replace:=wdReplaceAll)
Wend
End With
End Sub
Steve Hudson, Word Heretic
HDK List MVP
Word tools: her...@tdfa.com
Please post replies/further questions to the newsgroup so that all may benefit.
If I don't provide enough information, please feel free to ask for more :-)