If you're using what Word calls "full justification" (also known as the
DistributePara command, whose default shortcut key is Ctrl+Shift+J), that's
the way that works. However, what you want is only "justification" (also
known as the JustifyPara command, whoes shortcut key is Ctrl+J).
Unfortunately, I don't know of any way in the Replace dialog to specify a
distributed paragraph format to be able to search for it and replace it with
justification. The Ctrl+J keystroke works in the Find What box, but
Ctrl+Shift+J doesn't do anything there.
If you have only a few paragraphs like that, you can simply click in each
paragraph in turn and press Ctrl+J. If there are lots of distributed
paragraphs, use this macro:
Sub NotFullJustify()
Dim myPara As Paragraph
For Each myPara In ActiveDocument.Paragraphs
If myPara.Alignment = wdAlignParagraphDistribute Then
myPara.Alignment = wdAlignParagraphJustify
End If
Next
End Sub
See
http://www.gmayor.com/installing_macro.htm if necessary.
--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.