Converting Numbers to Words in Indian Rupees and Other Currencies in Excel (2025 Edition)
Hereâs how to convert numbers into words in Indian Rupeesâor any other currencyâin Excel.
When working with financial documents such as invoices, quotations, tax forms, cheques, or payment vouchers, itâs often necessary to represent currency values in both numerical and written word format. This adds a layer of professionalism and helps prevent fraud or misinterpretation.
Example
While Microsoft Excel does not have a built-in feature to convert numbers to words, there are multiple effective ways to achieve thisâthrough VBA, LAMBDA functions, or the all-in-one Kutools for Excel add-in.
Convert Numbers to Words in Indian Rupees with VBA (All Microsoft Versions)
- Convert Numbers to Words in Other Currencies (USD, EUR, etc.)
- Save Your Workbook as a Macro-Enabled File
Convert Numbers to Words in Indian Rupees with LAMBDA Function (Microsoft 365 Only)
Convert Numbers to USD, EUR, and 30+ Other Currencies (All Microsoft Versions)
Convert Numbers to Words in Indian Rupees with VBA (All Microsoft Versions)
For users of any Excel version, VBA (Visual Basic for Applications) provides a customizable method to convert numeric amounts into words using the Indian numbering system (e.g., thousands, lakhs, crores).
Step 1. Press Alt + F11 to open the VBA editor (Microsoft Visual Basic for Applications window).

Step 2. Go to Insert > Module.

Step 3. Paste the VBA code into the Module.
Convert numbers into words in Indian Rupees

Step 4. Save and return to Excel.
Step 5. Select a cell and use the formula like this:
Press Enter key

đĄ Tip: This method supports decimals (Paise) and works offline.
Limitations of Using VBA
- Requires saving the workbook as a macro-enabled file (.xlsm).
- Macros can be blocked by security settings in some environments.
Convert Numbers to Words in Other Currencies (USD, EUR, etc.)
To customize the output for other currencies, such as "Dollars" or "Euros", you can adjust the string values in the VBA function. Below is a simplified and more flexible version of the function.
Flexible VBA Code Template (Custom Currency)
Example VBA Formula:

Example VBA Formula of Other Currency:
=NumberToWordsCustom(A2, "Euros", "Cents")
=NumberToWordsCustom(A2, "Pounds", "Pence")
The code is flexibleâsimply pass in the desired currency and subunit.
Save Your Workbook as a Macro-Enabled File
If you're using VBA, it's critical to save your workbook with macros enabled. Otherwise, your code will be lost when the file is closed.
Step 1. Go to File > Save As

Step 2. Select a location and choose file type: Excel Macro-Enabled Workbook (*.xlsm).

Step 3. Click Save.
â Your custom functions like =ConvertToRupees(A2) will now persist and be reusable anytime.
Convert Numbers to Words in Indian Rupees with LAMBDA Function (Microsoft 365 Only)
For Excel 365 users, you can use LAMBDA, a new Excel feature that lets you define custom formulasâno VBA required.
đȘ What is LAMBDA?
LAMBDA is a feature in Excel that lets you create your own custom functions using formulasâjust like built-in functions such as SUM or IF, but without needing any code or macros. Itâs great for simplifying repetitive logic and making your spreadsheets cleaner and easier to maintain.
Step 1: Go to the Name Manager and click Formulas > Name Manager.

Step 2: Create a new Name.
Click New button.
Enter a Name.
Example: RupeeToWords
Step 3: Paste this LAMBDA formula into Refers to field:
=LAMBDA(n, LET( units, {"","One","Two","Three","Four","Five","Six","Seven","Eight","Nine"}, teens, {"Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"}, tens, {"","","Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety"}, num, INT(n), paise, ROUND((n - INT(n)) * 100, 0), ConvertTwo, LAMBDA(x, IF(x<10, INDEX(units, x+1), IF(x<20, INDEX(teens, x-9), INDEX(tens, INT(x/10)+1) & IF(MOD(x,10)>0, " " & INDEX(units, MOD(x,10)+1), "") ) ) ), ConvertThree, LAMBDA(x, IF(x=0, "", IF(x<100, ConvertTwo(x), INDEX(units, INT(x/100)+1) & " Hundred" & IF(MOD(x,100)>0, " " & ConvertTwo(MOD(x,100)), "") ) ) ), words, IF(num=0, "Zero", TEXTJOIN(" ", TRUE, IF(INT(num/10000000)>0, ConvertTwo(INT(num/10000000)) & " Crore", ""), IF(MOD(INT(num/100000),100)>0, ConvertTwo(INT(MOD(num,10000000)/100000)) & " Lakh", ""), IF(MOD(INT(num/1000),100)>0, ConvertTwo(INT(MOD(num,100000)/1000)) & " Thousand", ""), IF(MOD(INT(num/100),10)>0, INDEX(units, INT(MOD(num,1000)/100)+1) & " Hundred", ""), IF(MOD(num,100)>0, ConvertTwo(MOD(num,100)), "") ) ), result, "Rupees " & words & IF(paise>0, " and " & ConvertTwo(paise) & " Paise", "") & " Only", result ))Click OK to save the new Name.

Step 3. Close the Name Manager and return to Excel.
Step 4. Use the formula in any cell like this:
Press Enter key.

đ The full LAMBDA function code handles Crores, Lakhs, Thousands, and decimals.
Convert Numbers to USD, EUR, and 30+ Other Currencies (All Microsoft Versions)
For the most efficient and professional solution, use the Kutools for Excel's Numbers to Words. This powerful tool supports:
đ Over 30 currencies, including:
- US Dollars (USD)
- Euros (EUR)
- Chinese Yuan (CNY)
- British Pounds (GBP)
- etc.
Step 1. Select the cells you want to convert.

Step 2. Go to Kutools > Content > Numbers to Words

Step 3. Choose your target currency and click OK.

Numbers are converted to the specified currency.

đ Tip: If you want to directly convert numbers to words, tick the Not converted to Currency option, and the result will be shown as this:

When to Use Each Method
Use VBA if you need a flexible, programmable solution and you're familiar with macros.
- Use LAMBDA if youâre using Excel 365, and only occasionally need to convert Indian Rupee values. It's a lightweight, shareable solution that requires no macros or external toolsâperfect for simple or personal tasks.
- Use Kutools for Excel if you want the easiest, fastest, and most versatile solutionâno coding required. Kutools is especially useful when:
- You deal with multiple currencies.
- Need to convert values in bulk or large datasets.
- Want a no-macro, professional-ready tool with 30+ currency options and AI-powered performance.
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!