Click here to download addin or copy paste below code in your excel module Function Numbertowords(ByVal MyNumber) Dim Rupees, paisa, Temp 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 paisa and set MyNumber to Rupee amount. If DecimalPlace > 0 Then paisa = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _ "00", 2)) MyNumber = Trim(Left(MyNumber, DecimalPlace - 1)) End If Count = 1 Do While MyNumbe...
EXCEL తెలుగు HYDERABAD TELANGANA