Numbers in words

raviabburi

New Member
Joined
Feb 21, 2009
Messages
21
Dear Friends,

How to get Numbers in words

Ex: 11,22,171/- in - Eleven Lac Twenty Two Thousand One Hundred Seventy One Only

Thanks in advance.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
use this for numbers upto 9 digits and 2 decimal places

goto

Insert -> Name -> Define

type "O" in names in workbook field

and copy & paste the below in "Refers to" field

={" "," one"," two"," three"," four"," five"," six"," seven","eight"," Nine"," ten"," eleven"," twelve"," thirteen"," fourteen","fifteen"," sixteen"," seventeen"," eighteen"," nineteen"}

click Add


type "T" in names in workbook field

and copy & paste the below in "Refers to" field

={" "," "," twenty"," thirty"," forty"," fifty"," sixty","seventy"," eighty"," ninety"}

click Add



assume the number is in A7

type the below formula in B7

=ROUND(INT(A7),)

type the below formula in C7

=ROUND((A7-INT(A7))*100,0)

type the below formula in D7


=PROPER(TRIM(IF(B7>=1,"Rupees ","")&IF(INT(B7/10^7)>19,INDEX(T,,INT(B7/10^8)+1)&INDEX(O,,MOD(INT(B7/10^7),10)+1),INDEX(O,,INT(B7/10^7)+1))&IF(INT(B7/10^7)>0," crore "," ")&IF(INT(MOD(B7,10^7)/10^5)>19,INDEX(T,,INT(MOD(B7,10^7)/10^6)+1)&INDEX(O,,MOD(INT(MOD(B7,10^7)/10^5),10)+1),INDEX(O,,INT(MOD(B7,10^7)/10^5)+1))&IF(INT(MOD(B7,10^7)/10^5)>0," lakh "," ")&IF(INT(MOD(B7,10^5)/10^3)>19,INDEX(T,,INT(MOD(B7,10^5)/10^4)+1)&INDEX(O,,MOD(INT(MOD(B7,10^5)/10^3),10)+1),INDEX(O,,INT(MOD(B7,10^5)/10^3)+1))&IF(INT(MOD(B7,10^5)/10^3)>0," thousand "," ")&IF(INT(MOD(B7,10^3)/100)>19,INDEX(T,,INT(MOD(B7,10^3)/10^3+1))&INDEX(O,,INT(MOD(B7,10^3)/100)+1),INDEX(O,,INT(MOD(B7,10^3)/100)+1))&IF(INT(MOD(B7,10^3)/100)>0," hundred "," ")&IF(MOD(B7,100)>19,INDEX(T,,INT(MOD(B7,100)/10)+1)&INDEX(O,,MOD(B7,10)+1),INDEX(O,,MOD(B7,100)+1))&IF(C7>0,IF(B7>=1," and ","")&" Paise "&IF(MOD(C7,100)>19,INDEX(T,,INT(MOD(C7,100)/10)+1)&INDEX(O,,MOD(C7,10)+1),INDEX(O,,MOD(C7,100)+1)),"")))
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,794
Members
449,048
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top