Wayne,
Well no there is no such thing a wishing Word would do something and it
happen automatically. You have to take certain steps. Peter (grammatim)
gave you the steps. You could put similar steps in a macro and then run the
macro on your list:
Sub ScratchMacro()
Dim oRng As Word.Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = """*"""
.MatchWildcards = True
.Wrap = wdFindContinue
While .Execute
oRng.Text = Mid(oRng.Text, 2, Len(oRng.Text) - 2)
oRng.Font.Color = wdColorBrightGreen
Wend
End With
ActiveDocument.Range.Sort
Set oRng = ActiveDocument.Range
With oRng.Find
.Font.Color = wdColorBrightGreen
.Wrap = wdFindContinue
While .Execute
oRng.Text = Chr(34) & oRng.Text & Chr(34)
oRng.Font.Color = wdColorAutomatic
Wend
End With
End Sub
--
Greg Maxey - Word MVP
My web sitehttp://gregmaxey.mvps.org
Word MVP web sitehttp://word.mvps.org
Does that mean that there is no way to "automatically" do it? If so,then
I'll just have to gut it out... with approximately 50,000 titles to
alphabetize, perhaps 1500 of which have quotation marks.... a LOT of hand
work.
So you want to sort but ignore punctuation? I'd be tempted to sort them
then
rearrange the others manually. But that's just me.
--
JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"
Of course that would make it simple... to alphabetize... but then I'd
have
to
locate all of the poems among 986 pages of titles and put the quotation
marks
back.
--
Hokie
:
Can you strip out the punctuation marks?
--
JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"
How does one alphabetize a list (e.g. poems and novels, combined)
that
includes some items with leading / trailing parentheses and some
that
don't?