
TO ASK A QUESTION: If you have a question or need help with Office, please feel free to use the 'Click to Contact' link at the bottom of this page. You'll get a form that you can use to email a question to me. (I had been getting a ton of spam when accepting direct emails, so only emails that use this form will get through to me.)
Please be sure to mention the version of Office you are using when you send your question.
I answer all e-mails that I receive via this form, as long as they are polite :)
Since disabling comments on this site, I'm actually hearing from more of you with questions ... so, as it seems people prefer to email rather than comment, I'm going to leave comments disabled. As always, you can ask me any Office-related questions you have. If the question is outside of my expertise, I'll try to direct you to where you can get an answer.

Comments
Is there an easy way to convert numbering done using Format > Bullets and Numbering > Outline Numbered (a.k.a. automatic paragraph numbering) to hard numbers (just text)?
Thanks Stephanie.
Posted by: Craig Huggart | December 12, 2005 05:41 PM
Hi, Craig,
Sure is ... to avoid workarounds and complications, you'll need to venture into the VB editor -- but it's a quick and simple single line of code.
Just go to Tools, Macro, Visual Basic Editor (or press Alt+F11). Then, press CTRL+G, this opens a window at the bottom of the screen called the Immediate Window (you can also access this window on the View menu).
Type: ActiveDocument.ConvertNumbersToText
... then press Enter.
All done :)
This method has been available in VBA since Word 97, so you should have no problem regardless of the document version.
By the way - if this is something you need to do often, create a macro for it instead of using the immediate window and drop the macro on a toolbar or menu, or give it a keyboard shortcut. Let me know if you need to know how to do any of that ...
Best,
Stephanie
Posted by: Stephanie | December 12, 2005 06:04 PM