Link to the
Example File.
I saw a question Doug answered in 2012 and I tried to impliment it but it doesn't seem to be working out for me. I was hoping the community could shed some light in the situation. I'm new to VBA and am trying my darndest but I must acquiesce to my ignorance.
Here's the question I'm refering to:
I'm doing a mass conversion of word documents from one company's layout to another companies layout. During this process I want to keep intigrate the files manually typed out numbering system to the new files automatic numbering system so it makes any revisions
in the future easier.
Some numbering exists in the old format so I do the following:
ActiveDocument.Range.ListFormat.ConvertNumbersToText
I then want to convert the text numbers (as seen in the attached doc) to an automatic numbering system in the same format. It'd be nice if it put them in their respective levels.
Example:
(manually typed text)
1.0
1.1
1.1.1
1.1.2
1.1.2.1
to
(automatic list formatting)
1.0
1.1
1.1.1
1.1.2
1.1.2.1
Do you know if this is possible?
Thanks everyone!
Ryan
**Edit: added missing code