+ Reply to Thread
Results 1 to 14 of 14

Amendments in Function Convert digits to words

  1. #1
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Thumbs up Amendments in Function Convert digits to words

    Hello dears,

    Before I got this Function from your Form to convert digit to words.

    Function is as following..right now i m getting as following:-

    If i type 123..i m getting one Hundred twenty Three with this script as below.

    But i want US Dollar one Hundred Twenty Three..

    Can any one add the word "US Dollar" in this script.

    Script..

    PHP Code: 
    Function English(ByVal N As Currency) As String
                
    Const Thousand 1000@
                Const 
    Million Thousand Thousand
                
    Const Billion Thousand Million
                
    Const Trillion Thousand Billion
                
    If (0@) Then English "zero": Exit Function
                
    Dim Buf As String: If (0@) Then Buf "negative " Else Buf ""
                
    Dim Frac As CurrencyFrac Abs(Fix(N))
                If (
    0@ Or Frac <> 0@) Then N Abs(Fix(N))
                
    Dim AtLeastOne As IntegerAtLeastOne >= 1
                
    If (>= TrillionThen
                    Debug
    .Print N
                    Buf 
    Buf EnglishDigitGroup(Int(Trillion)) & " trillion"
                    
    Int(Trillion) * Trillion
                    
    If (>= 1@) Then Buf Buf " "
                
    End If
                If (
    >= BillionThen
                    Debug
    .Print N
                    Buf 
    Buf EnglishDigitGroup(Int(Billion)) & " billion"
                    
    Int(Billion) * Billion
                    
    If (>= 1@) Then Buf Buf " "
                
    End If
                If (
    >= MillionThen
                    Debug
    .Print N
                    Buf 
    Buf EnglishDigitGroup(Million) & " million"
                    
    N Mod Million
                    
    If (>= 1@) Then Buf Buf " "
                
    End If
                If (
    >= ThousandThen
                    Debug
    .Print N
                    Buf 
    Buf EnglishDigitGroup(Thousand) & " thousand"
                    
    N Mod Thousand
                    
    If (>= 1@) Then Buf Buf " "
                
    End If
                If (
    >= 1@) Then
                    Debug
    .Print N
                    Buf 
    Buf EnglishDigitGroup(N)
                
    End If
                If (
    Frac 0@) Then
                    Buf 
    Buf " exactly"
                
    ElseIf (Int(Frac 100@) = Frac 100@) Then
                    
    If AtLeastOne Then Buf Buf " and "
                    
    Buf Buf Format$(Frac 100@, "00") & "/100"
                
    Else
                    If 
    AtLeastOne Then Buf Buf " and "
                    
    Buf Buf Format$(Frac 10000@, "0000") & "/10000"
                
    End If
                
    English Buf
            End 
    Function

            Private Function 
    EnglishDigitGroup(ByVal N As Integer) As String
                
    Const Hundred " hundred"
                
    Const One "one"
                
    Const Two "two"
                
    Const Three "three"
                
    Const Four "four"
                
    Const Five "five"
                
    Const Six "six"
                
    Const Seven "seven"
                
    Const Eight "eight"
                
    Const Nine "nine"
                
    Dim Buf As StringBuf ""
                
    Dim Flag As IntegerFlag False
                Select 
    Case (100)
                    Case 
    0Buf ""Flag False
                    
    Case 1Buf One HundredFlag True
                    
    Case 2Buf Two HundredFlag True
                    
    Case 3Buf Three HundredFlag True
                    
    Case 4Buf Four HundredFlag True
                    
    Case 5Buf Five HundredFlag True
                    
    Case 6Buf Six HundredFlag True
                    
    Case 7Buf Seven HundredFlag True
                    
    Case 8Buf Eight HundredFlag True
                    
    Case 9Buf Nine HundredFlag True
                End Select
                
    If (Flag <> FalseThen N N Mod 100
                
    If (0Then
                    
    If (Flag <> FalseThen Buf Buf " "
                
    Else
                    
    EnglishDigitGroup Buf
                    
    Exit Function
                
    End If
                
    Select Case (10)
                    Case 
    01Flag False
                    
    Case 2Buf Buf "twenty"Flag True
                    
    Case 3Buf Buf "thirty"Flag True
                    
    Case 4Buf Buf "forty"Flag True
                    
    Case 5Buf Buf "fifty"Flag True
                    
    Case 6Buf Buf "sixty"Flag True
                    
    Case 7Buf Buf "seventy"Flag True
                    
    Case 8Buf Buf "eighty"Flag True
                    
    Case 9Buf Buf "ninety"Flag True
                End Select
                
    If (Flag <> FalseThen N N Mod 10
                
    If (0Then
                    
    If (Flag <> FalseThen Buf Buf "-"
                
    Else
                    
    EnglishDigitGroup Buf
                    
    Exit Function
                
    End If
                
    Select Case (N)
                    Case 
    0:
                    Case 
    1Buf Buf One
                    
    Case 2Buf Buf Two
                    
    Case 3Buf Buf Three
                    
    Case 4Buf Buf Four
                    
    Case 5Buf Buf Five
                    
    Case 6Buf Buf Six
                    
    Case 7Buf Buf Seven
                    
    Case 8Buf Buf Eight
                    
    Case 9Buf Buf Nine
                    
    Case 10Buf Buf "ten"
                    
    Case 11Buf Buf "eleven"
                    
    Case 12Buf Buf "twelve"
                    
    Case 13Buf Buf "thirteen"
                    
    Case 14Buf Buf "fourteen"
                    
    Case 15Buf Buf "fifteen"
                    
    Case 16Buf Buf "sixteen"
                    
    Case 17Buf Buf "seventeen"
                    
    Case 18Buf Buf "eighteen"
                    
    Case 19Buf Buf "nineteen"
                
    End Select
                EnglishDigitGroup 
    Buf
            End 
    Function 
    Thanks in advance..
    Last edited by tariqnaz2005; 11-01-2009 at 07:53 AM.

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Amendments in Function Convert digits to words

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code. Posting code without them makes your code hard to read and difficult to be copied for testing. Highlight your code and click the # at the top of your post window. For more information about these and other tags, found here
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Re: Amendments in Function Convert digits to words

    removed because of code
    Last edited by tariqnaz2005; 11-01-2009 at 10:20 AM.

  4. #4
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Re: Amendments in Function Convert digits to words

    No i think its same as old..can u suggest me how i copy and where i past this code or script..

  5. #5
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Amendments in Function Convert digits to words

    Quote Originally Posted by tariqnaz2005 View Post
    No i think its same as old..can u suggest me how i copy and where i past this code or script..
    What do you mean/

    Also, how can you have over 40 posts and not know about Code Tags, have you bothered reading the Forum Eules or looking at the "How To" videos?

  6. #6
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Re: Amendments in Function Convert digits to words

    Sorry dear..

    I edited my first post at top..Now it is with PHP Code Tag and easy for you..Pls go through it and add the word " US Dollar".

    I tried my best but i m not getting it..

    Thanks in acvance..

  7. #7
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Re: Amendments in Function Convert digits to words

    i m stil waiting for your kind consideration on my requst..i have edited my first post in first page..pls give a look and do favour..thanks
    Last edited by tariqnaz2005; 11-02-2009 at 01:27 AM.

  8. #8
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Re: Amendments in Function Convert digits to words

    Hello every one..

    I hope now script will be clear..
    Pls go through and advise me that how to add word " US Dollar in this scrip"
    Thanks

  9. #9
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Amendments in Function Convert digits to words

    You should use ode Tags not PHP.

    There's many versions around, here's one that i adapted. It allows the cuurrency to be input as a string
    Please Login or Register  to view this content.
    Use in a worksheet

    =numtotext(125,TRUE,"US Dollars")

    Or

    =PROPER(numtotext(125,TRUE,"US Dollars"))

  10. #10
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Re: Amendments in Function Convert digits to words

    Thaks for reply..

    But problem is my funciton has been issued for all computers..and every one is working on it..not just i want to add in the begining of this fucntion only "US DOllar" rest all is ok..

    Your new function is good ..but we are using other which i sent to you at the top..

    Kindly give a look to my code and do some amendments as per my requirements..

    thanks

  11. #11
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Amendments in Function Convert digits to words

    I haven't got time to work my way through all that code, sorry. Whatever amendments you receive they will need changing on each computer that uses it

    My experience was that the various functions did not work like that.

    There's a workbook example here

    http://www.excel-it.com/numbers%20to%20text.htm

    You could convert that to an addin & distribute it to your users.

  12. #12
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Re: Amendments in Function Convert digits to words

    No problems..thansk anyway for every thing..its enough that you gave to me..

    God Bless you..

    I hope any one else will help me..
    Last edited by tariqnaz2005; 11-03-2009 at 01:16 AM.

  13. #13
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Re: Amendments in Function Convert digits to words

    Hi, RoyUK given me a new script..it is working good ..but any one is there who can work on my script can add in begining a word "US Dollar".

    Thanks

  14. #14
    Forum Contributor
    Join Date
    07-21-2009
    Location
    Kuwait
    MS-Off Ver
    Excel 2019
    Posts
    292

    Thumbs up Re: Amendments in Function Convert digits to words

    Hi guys,

    Again i m gonna remind and request you specialist to look into my matter..

    As every thing is fine ..function is working good..only i want to add US Dollar in beginning ..for the time being i m using concatinate formula to joint it..but i want it in funtion..need ur little time to revise it...thanks
    Sample file.xls

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1