Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
requir a formula to convert figure in words
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
Have look he http://groups.google.co.uk/group/mic...44fdf1bf90703f This thread seems to cover most of the options! Andy. "navin" wrote in message ... requir a formula to convert figure in words |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See http://www.xldynamic.com/source/xld.xlFAQ0004.html
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "navin" wrote in message ... requir a formula to convert figure in words |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Function InLetters(NumberToLeters) x = Int(Round(NumberToLeters, 2)) DES = Right(Application.WorksheetFunction.Text(NumberToL eters, "0.00"), 2) If DES 0 Then des1 = " AND " & Right(DES, 2) & "/100 " End If FirstTwoDigits = Right(x, 2) Onetonine = Array("", " ONE ", " TWO ", " THREE ", " FOUR ", " FIVE ", " SIX ", " SEVEN ", " EIGHT ", " NINE ", " TEN ", _ " ELEVEN ", " TWELVE ", " THIRTEEN ", " FOURTEEN ", " FIFTEEN ", " SIXTEEN ", " SEVENTEEN ", " EIGHTEEN ", " NINETEEN ", " TWENTY ", _ " TWENTY ONE", " TWENTY TWO ", " TWENTY THREE ", " TWENTY FOUR ", " TWENTY FIVE ", " TWENTY SIX ", " TWENTY SEVEN ", " TWENTY EIGHT ", " TWENTY NINE ", " THIRTY ", _ " THIRTY ONE ", " THIRTY TWO ", " THIRTY THREE ", " THIRTY FOUR ", " THIRTY FIVE ", " THIRTY SIX ", " THIRTY SEVEN ", " THIRTY EIGHT ", " THIRTY NINE ", " FORTY ", _ " FORTY ONE ", " FORTY TWO ", " FORTY THREE ", " FORTY FOUR ", " FORTY FIVE ", " FORTY SIX ", " FORTY SEVEN ", " FORTY EIGHT ", " FORTY NINE ", " FIFTY ", _ " FIFTY ONE ", " FIFTY TWO ", " FIFTY THREE ", " FIFTY FOUR ", " FIFTY FIVE ", " FIFTY SIX ", " FIFTY SEVEN ", " FIFTY EIGHT ", " FIFTY NINE ", " SIXTY ", _ " SIXTY ONE ", " SIXTY TWO ", " SIXTY THREE ", " SIXTY FOUR ", " SIXTY FIVE ", " SIXTY SIX ", " SIXTY SEVEN ", " SIXTY EIGHT ", " SIXTY NINE ", " SEVENTY ", _ " SEVENTY ONE ", " SEVENTY TWO ", " SEVENTY THREE ", " SEVENTY FOUR ", " SEVENTY FIVE ", " SEVENTY SIX ", " SEVENTY SEVEN ", " SEVENTY EIGHT ", " SEVENTY NINE ", " EIGHTY ", _ " EIGHTY ONE ", " EIGHTY TWO ", " EIGHTY THREE ", " EIGHTY FOUR ", " EIGHTY FIVE ", " EIGHTY SIX ", " EIGHTY SEVEN ", " EIGHTY EIGHT ", " EIGHTY NINE ", " NINETY ", _ " NINETY ONE ", " NINETY TWO ", " NINETY THREE ", " NINETY FOUR ", " NINETY FIVE ", " NINETY SIX ", " NINETY SEVEN ", " NINETY EIGHT ", " NINETY NINE ") FirstTwoDigits1 = Onetonine(FirstTwoDigits) '--------------- ThirdDigit = Int(Right(x, 3) / 100) If ThirdDigit 0 Then ThirdDigit1 = Onetonine(ThirdDigit) & "HUNDRED" End If '---------------- FirstSixDigits = Right(x, 6) NoOfThosands = Int(FirstSixDigits / 1000) FourthAndFifthDigit = Right(NoOfThosands, 2) If FourthAndFifthDigit 0 Then FourthAndFifthDigit1 = Onetonine(FourthAndFifthDigit) & " THOUSAND " End If SixthDigit = Int(FirstSixDigits / 100000) If SixthDigit 0 Then SixthDigit1 = Onetonine(SixthDigit) & " HUNDRED " End If If FourthAndFifthDigit = 0 And SixthDigit 0 Then SixthDigit2 = SixthDigit1 & "THOUSAND" Else SixthDigit2 = SixthDigit1 End If '--------- SeventhAndEighth = Right(x, 8) NoOfMillions = Int(SeventhAndEighth / 1000000) If NoOfMillions 0 Then NoOfMillions1 = Onetonine(NoOfMillions) & "MILLION" End If If NumberToLeters 0 And NumberToLeters < 100000000 Then InLetters = Application.WorksheetFunction.Proper(Trim(NoOfMill ions1 & SixthDigit2 & FourthAndFifthDigit1 & ThirdDigit1 & FirstTwoDigits1 & des1 & " ONLY ")) End If If NumberToLeters = 100000000 Then InLetters = "HUNDRED MILLION ONLY " End If End Function "Bob Phillips" wrote: See http://www.xldynamic.com/source/xld.xlFAQ0004.html -- HTH Bob Phillips (remove nothere from email address if mailing direct) "navin" wrote in message ... requir a formula to convert figure in words |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I convert numbers to words (1000 to One Thousand) in Excel | Excel Discussion (Misc queries) | |||
I wish excel to convert number to words ie 23 to twenty three | Excel Discussion (Misc queries) | |||
how to convert numerical figure into text | Excel Worksheet Functions | |||
How do I convert numbers into words in excell worksheet? | Excel Worksheet Functions | |||
how do i convert numbers to words | Excel Worksheet Functions |