How to convert numbers in word to ordinary words, how to convert WORD numbers to ordinary text
How to Remove Automatic Numbering Format in Word While Retaining Original Numbered Content:
Access the “Developer” Tab in Word
Open File -> Options -> Customize Ribbon -> Check “Developer” -> OK
Write a Macro
Click on Developer -> Macros -> In the “Macro name” field, enter a macro name (e.g., NumToTxt) -> Click “Create.” This will open the Visual Basic editor window, where you should see the following code:
Copy and paste the following code:
1
ActiveDocument.Content.ListFormat.ConvertNumbersToText
Paste this code in front of “End Sub” in the editor window. Finally, click the save button in the Visual Basic editor to save the macro to the Normal template, then close the VBA window and return to Word.
Editor window content:
Use the Macro
Open the Word document you want to process. Click on Tools -> Macros -> Select the “NumToTxt” macro that we created earlier (the macro name should be displayed in the “Macro name” field) -> Run the macro. This will automatically remove the numbering format.
Original article link: How to Convert Word Numbering to Plain Text