Quick summary
Converting numbers to words in Excel requires a custom VBA macro using Microsoft's prebuilt SpellNumber function. This step-by-step process enables users to automatically display numeric values as written text directly within their spreadsheet cells.
Steps
- Go to Microsoft 365 and scroll down to find the prebuilt macro function provided by Microsoft.
- Copy the code to your clipboard for later use.
- Open your Excel file and click File.
- Navigate to the Options tab.
- Go to Customize Ribbon, check Developer, and click OK.
- Open the Developer tab and launch the VBA editor.
- In the VBA editor, click Insert > Module to open a blank code window.
- Paste the copied code into the VBA editor, press Ctrl + S to save, and close the editor.
- In a blank cell, type =NumberText(A2) replacing A2 with the cell holding the number, then press Enter.
- The numbers in the selected cells will be converted to word equivalents automatically.
- Drag the formula down or across cells to apply the number-to-text conversion to multiple cells.
.gif)



