How to "convert" all autonumber fields to plain text?

A

artur.winiczenko

I'm writing a program that copies document page by page, and then saves each page as a separate file with some processing on the way. I do have problems with keeping autonumerated list number that spread across multiple pages.

Maybe it would be possible to manually open whole file before processing, and replace all number in numbered lists with their text equivalents?

To make myself clearer:
For example I have document that has a numbered header on each page:
------page1-----
1. Header I
 
S

Stefan Blom

You can remove number formatting using a line of code as follows. Make sure
that the document you want to "convert" is the active document. Press
Alt+F11 to display the Visual Basic Editor. Press Ctrl+G to activate the
Immediate window. Type

ActiveDocument.ConvertNumbersToText

and press Enter. This clears all auto numbers, including any LISTNUM fields,
and replaces them with static text.

Note that if you applied numbering via styles, you also have to remove the
numbering from the styles, or it may resurface (for example when you reapply
a style to text).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top