• Fixed Numbers

    Author
    Topic
    #461212

    How do I change auto numbers to fixed numbers in a Word 2003 document? I tried selecting the automatic number (field?) and pressing Ctrl+Shift+F11 (per Word’s Help), but that does not work.

    Regards,

    Dea Friloux

    Viewing 3 reply threads
    Author
    Replies
    • #1169101

      Dea,

      Don’t recall whether there is such a command or not, but you can do it with the following line of code:

      Code:
      ActiveDocument.ConvertNumbersToText

      Gary

    • #1169102

      How do I change auto numbers to fixed numbers in a Word 2003 document? I tried selecting the automatic number (field?) and pressing Ctrl+Shift+F11 (per Word’s Help), but that does not work.

      Regards,

      Dea Friloux

      Press ALT+F11 to display the VBA immediate window. Type

      ActiveDocument.ConvertNumbersToText

      and press ENTER. All of the autonumbered text (numbered lists, outline numbered lists, and LISTNUM fields) will lose their numbering “coding” and the currently displayed numbers will be converted to plain text.

      Pam

    • #1169107

      Automatic numbering created by using a style with numbering or by applying Format | Bullets and Numbering does not use fields, so Ctrl+Shift+F11 doesn’t help.

      The line of code mentioned by Gary and Pam is the only way – there is no command in Word’s interface to do this.

    • #1169119

      How do I change auto numbers to fixed numbers in a Word 2003 document? I tried selecting the automatic number (field?) and pressing Ctrl+Shift+F11 (per Word’s Help), but that does not work.

      Regards,

      Dea Friloux

      I remember asking about this in the Lounge about 3 years ago, and Hans provided me with a somewhat similar answer. I have a macro like this

      Code:
      Sub List_convert()
      '
      ' List_convert Macro
      ' Macro created 9/23/2006 by Ian Wilson
      '
      Selection.Range.ListFormat.ConvertNumbersToText
      End Sub

      and I created a button to go on my toolbar to run it. Whenever I want to convert an automatically numbered list to plain text numbers I select the list and click the button. It works brilliantly.

      Ian

    Viewing 3 reply threads
    Reply To: Fixed Numbers

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: