HomeNews

Convert Rupees in Words in Excel Sheet

Convert Rupees in Words in Excel Sheet

To Convert Rupees in word

Open any Excel Sheet

For Excel 2007 enable to view Developer Ribbon trough Excel Option

Step 1  Press ALT+F11 key

Copy & paste following Formulae  on sheet 1

The Formula is   starting from below line (Select from below line โ€˜***)

โ€˜****************
โ€˜ Main Function *
โ€˜****************

Function SpellRupee(ByVal MyNumber)
Dim Dollars, Cents, Temp, Temp1, Dollars1, Temp2
Dim DecimalPlace, Count

ReDim Place(9) As String
Place(2) = โ€ THOUSAND โ€
Place(3) = โ€ Million โ€
Place(4) = โ€ Billion โ€
Place(5) = โ€ Trillion โ€œ

โ€˜ String representation of amount.
MyNumber = Trim(Str(MyNumber))

โ€˜ Position of decimal place 0 if none.
DecimalPlace = InStr(MyNumber, โ€œ.โ€)
โ€˜ Convert cents and set MyNumber to dollar amount.
If DecimalPlace > 0 Then
Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _
โ€œ00โ€, 2))
MyNumber = Trim(Left(MyNumber, DecimalPlace โ€“ 1))
End If

Count = 1
Temp2 = โ€œโ€
If Len(MyNumber) > 7 Then
Temp2 = GetHundreds(Left(MyNumber, Len(MyNumber) โ€“ 7)) & โ€ CORES โ€
MyNumber = Right(MyNumber, 7)

End If

Temp1 = โ€œโ€
If Len(MyNumber) > 5 Then
Temp1 = GetHundreds(Left(MyNumber, Len(MyNumber) โ€“ 5)) & โ€ LAKHS โ€
MyNumber = Right(MyNumber, 5)

End If

Do While MyNumber <> โ€œโ€
Temp = GetHundreds(Right(MyNumber, 3))
If Temp <> โ€œโ€ Then Dollars1 = Temp & Place(Count) & Dollars1
If Len(MyNumber) > 3 Then
MyNumber = Left(MyNumber, Len(MyNumber) โ€“ 3)
Else
MyNumber = โ€œโ€
End If
Count = Count + 1
Loop
Dollars = Temp2 & Temp1 & Dollars1
Select Case Dollars
Case โ€œโ€
Dollars = โ€œNIL RUPEESโ€
Case โ€œOneโ€
Dollars = โ€œONE RUPEE โ€
Case Else
Dollars = โ€ RUPEES โ€ & Dollars & โ€ ONLY โ€
End Select

Select Case Cents
Case โ€œโ€
Cents = โ€ โ€
Case โ€œOneโ€
Cents = โ€ โ€
Case Else
Cents = โ€ AND โ€ & Cents & โ€ PAISAโ€
End Select

SpellRupee = Dollars & Cents
End Function

โ€˜*******************************************
โ€˜ Converts a number from 100-999 into text *
โ€˜*******************************************

Private Function GetHundreds(ByVal MyNumber)
Dim Result As String

If Val(MyNumber) = 0 Then Exit Function
MyNumber = Right(โ€œ000โ€ & MyNumber, 3)

โ€˜ Convert the hundreds place.
If Mid(MyNumber, 1, 1) <> โ€œ0โ€ Then
Result = GetNumber(Mid(MyNumber, 1, 1)) & โ€ HUNDRED โ€
End If

โ€˜ Convert the tens and ones place.
If Mid(MyNumber, 2, 1) <> โ€œ0โ€ Then
Result = Result & GetTens(Mid(MyNumber, 2))
Else
Result = Result & GetNumber(Mid(MyNumber, 3))
End If

GetHundreds = Result
End Function

โ€˜*********************************************
โ€˜ Converts a number from 10 to 99 into text. *
โ€˜*********************************************

Private Function GetTens(TensText)
Dim Result As String

Result = โ€œโ€           โ€˜ Null out the temporary function value.
If Val(Left(TensText, 1)) = 1 Then   โ€˜ If value between 10-19โ€ฆ
Select Case Val(TensText)
Case 10: Result = โ€œTENโ€
Case 11: Result = โ€œELEVENโ€
Case 12: Result = โ€œTWELVEโ€
Case 13: Result = โ€œTHIRTEENโ€
Case 14: Result = โ€œFOURTEENโ€
Case 15: Result = โ€œFIFTEENโ€
Case 16: Result = โ€œSIXTEENโ€
Case 17: Result = โ€œSEVENTEENโ€
Case 18: Result = โ€œEIGHTEENโ€
Case 19: Result = โ€œNINETEENโ€
Case Else
End Select
Else
โ€˜ If value between 20-99โ€ฆ
Select Case Val(Left(TensText, 1))
Case 2: Result = โ€œTWENTY โ€
Case 3: Result = โ€œTHIRTY โ€
Case 4: Result = โ€œFORTY โ€
Case 5: Result = โ€œFIFTY โ€
Case 6: Result = โ€œSIXTY โ€
Case 7: Result = โ€œSEVENTY โ€
Case 8: Result = โ€œEIGHTY โ€
Case 9: Result = โ€œNINETY โ€
Case Else
End Select
Result = Result & GetNumber _
(Right(TensText, 1))  โ€˜ Retrieve ones place.
End If
GetTens = Result
End Function

โ€˜*******************************************
โ€˜ Converts a number from 1 to 9 into text. *
โ€˜*******************************************

Private Function GetNumber(Digit)
Select Case Val(Digit)
Case 1: GetNumber = โ€œONEโ€
Case 2: GetNumber = โ€œTWOโ€
Case 3: GetNumber = โ€œTHREEโ€
Case 4: GetNumber = โ€œFOURโ€
Case 5: GetNumber = โ€œFIVEโ€
Case 6: GetNumber = โ€œSIXโ€
Case 7: GetNumber = โ€œSEVENโ€
Case 8: GetNumber = โ€œEIGHTโ€
Case 9: GetNumber = โ€œNINEโ€
Case Else: GetNumber = โ€œโ€
End Select
End Function

Select upto above line (โ€ฆEnd Function) then copy and paste it on Sheet1
Step 2:  Press Alt+I then click module paste the same formulae
Step 3  Save the File
Step 4  Enable the macros

Formula is to use for convert number in Words
=SpellRupee(number)

Example:
Type in cell
=SpellRupee(25)

You will see: Rupees Twenty Five only
=SpellRupee(B1)

Facing any problem leave comments:-
Thanx

COMMENTS

WORDPRESS: 5
  • Tryโ€ฆ
    Free Excel Add-in Convert Excel cell Numbers to Words with Prefix and Suffix features.
    Download Link โ€“ http://www.xltool.in

  • Anonymous 11 years ago

    Hi, Thanks.
    You can also Try Gword Excel Add-In
    CLICK- http://www.xl.nikash.in/2013/08/excel-to-tally-data-xml-format_2797.html

  • anurakta 12 years ago

    the above code is working fine.but i am facing one problem that when i am closing my worksheet and again open it then this coding is not working.would u please help me how this code will save permanently in the worksheet.macros will not save permanently .so when i am writing the coding that time it works but after closing when i again open the worksheet i have to again write the code.otherwise it is not working.please help me and tell me the full process how it will work permanently.

    • karnmkwife 12 years ago

      In 2007 save as your "as mirco-enabled work sheet"
      & in all version enable macro wile opening the file or in security option change security to medium

  • anurakta 12 years ago

    the above code is working fine.but i am facing one problem that when i am closing my worksheet and again open it then this coding is not working.would u please help me how this code will save permanently in the worksheet.macros will not save permanently .so when i am writing the coding that time it works but after closing when i again open the worksheet i have to again write the code.otherwise it is not working.please help me and tell me the full process how it will work permanently.