Hi Ted:
You may be able to do this, with find and replace, if the
numbering followed a certain pattern. For instance, if
all the numbered paragraphs had a particular unique style
that makes it easy.
The general idea is you replace
manual number tab character (if a certain style)
with
text substitute (eg, [nummm]) tab character
Then you create a field-based number -- for instance,
Insert / Field / click on AutoNumLgl and OK
Then Cut that number, and do:
[nummm]
becomes
Special / Clipboard Contents (which displays as ^c)
Replace All
You now have a field-based list. To freeze those numbers
back to manual, select the whole document and do
Ctrl+Shift+F9.
* * *
Now: backing up a little, what I mean by
replacing "manual number" is, if the format is 1. 2. etc.,
you do a Wildcard search for [0-9]{1,3}.
This finds 1- to 3-digit numbers followed by a period.
Add in a tab character if all the numbers had that format:
[0-9]{1,3}.^t
Let's say you don't have unique styles for those
paragraphs. You can still find the numbers if they start
paragraphs (which means, they follow paragraph marks) and
these are the only numbers like this in the document.
In a Wildcard search, you use ^13 in the top slot to say
paragraph mark, and ^p in the bottom (don't ask why).
So you can do:
^13[0-9]{1,3}.^t
becomes
^p[nummm].^t
-----Original Message-----
My boss is a chucklehead. He frequently creates documents
with manually numbered paragraphs. Then he wants to
delete and insert paragraphs and have the numbering
automatically update. Is there a macro available to solve
this problem? Does anybody have a fix?
.