Post Reply 
how to pronounce numbers
06-25-2018, 03:50 PM
Post: #41
RE: how to pronounce numbers
A decade or so ago I had to write code to spell numbers for checks for US banks. Here's what I have; I apologize for it being in a terrible language:

Code:

Function SpellNumber(ByVal MyNumber)
    Dim Sign, Dollars, Cents, Hundreds
    Dim DecimalPlace, Count
    Dim Place(9) As String
    Place(2) = " Thousand"
    Place(3) = " Million"
    Place(4) = " Billion"
    Place(5) = " Trillion"     ' String representation of amount
    If MyNumber < 0 Then
        Sign = "Negative "
        MyNumber = MyNumber*-1
      Else
        Sign = ""
    End If
    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
    Do While MyNumber <> ""
        Hundreds = GetHundreds(Right(MyNumber, 3))
        If Hundreds <> "" Then
            If Dollars <> "" Then
                Dollars = ", " & Dollars
            End If
            Dollars = Hundreds & Place(Count) & Dollars
        End If
        If Len(MyNumber) > 3 Then
            MyNumber = Left(MyNumber, Len(MyNumber) - 3)
        Else
            MyNumber = ""
        End If
        Count = Count + 1
    Loop
    Select Case Dollars
        Case ""
            Dollars = "No Dollars"
        Case "One"
            Dollars = "One Dollar"
        Case Else
            Dollars = Dollars & " Dollars"
    End Select
    Select Case Cents
        Case ""
            Cents = " and No Cents"
        Case "One"
            Cents = " and One Cent"
        Case Else
            Cents = " and " & Cents & " Cents"
    End Select
    SpellNumber = Sign & Dollars & Cents
End Function
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
how to pronounce numbers - Don Shepherd - 06-23-2018, 10:48 AM
RE: how to pronounce numbers - Paul Dale - 06-23-2018, 11:05 AM
RE: how to pronounce numbers - grsbanks - 06-23-2018, 12:16 PM
RE: how to pronounce numbers - ttw - 06-23-2018, 12:58 PM
RE: how to pronounce numbers - ttw - 06-23-2018, 07:43 PM
RE: how to pronounce numbers - grsbanks - 06-23-2018, 01:22 PM
RE: how to pronounce numbers - Wes Loewer - 06-23-2018, 01:49 PM
RE: how to pronounce numbers - Wes Loewer - 06-23-2018, 03:01 PM
RE: how to pronounce numbers - peacecalc - 06-23-2018, 03:12 PM
RE: how to pronounce numbers - grsbanks - 06-23-2018, 07:27 PM
RE: how to pronounce numbers - Dieter - 06-25-2018, 11:04 AM
RE: how to pronounce numbers - Zaphod - 06-23-2018, 09:19 PM
RE: how to pronounce numbers - ttw - 06-23-2018, 07:45 PM
RE: how to pronounce numbers - grsbanks - 06-23-2018, 07:50 PM
RE: how to pronounce numbers - franz.b - 06-23-2018, 08:11 PM
RE: how to pronounce numbers - Wes Loewer - 06-24-2018, 01:08 AM
RE: how to pronounce numbers - Zaphod - 06-24-2018, 10:49 AM
RE: how to pronounce numbers - DavidM - 06-25-2018, 03:27 AM
RE: how to pronounce numbers - grsbanks - 06-25-2018, 12:55 PM
RE: how to pronounce numbers - DavidM - 06-25-2018, 01:22 PM
RE: how to pronounce numbers - Zaphod - 06-24-2018, 07:09 PM
RE: how to pronounce numbers - BartDB - 06-24-2018, 07:53 PM
RE: how to pronounce numbers - ttw - 06-24-2018, 11:20 PM
RE: how to pronounce numbers - grsbanks - 06-25-2018, 10:34 AM
RE: how to pronounce numbers - rprosperi - 06-25-2018, 01:25 PM
RE: how to pronounce numbers - rprosperi - 06-25-2018, 10:23 PM
RE: how to pronounce numbers - Paul Dale - 06-25-2018, 06:47 AM
RE: how to pronounce numbers - rncgray - 06-25-2018, 07:42 AM
RE: how to pronounce numbers - 3298 - 06-25-2018, 03:30 PM
RE: how to pronounce numbers - grsbanks - 06-25-2018, 03:33 PM
RE: how to pronounce numbers - Eric Rechlin - 06-25-2018 03:50 PM
RE: how to pronounce numbers - grsbanks - 06-26-2018, 07:08 AM
RE: how to pronounce numbers - Dieter - 06-27-2018, 07:05 AM
RE: how to pronounce numbers - grsbanks - 06-27-2018, 07:31 AM
RE: how to pronounce numbers - rprosperi - 06-27-2018, 01:21 PM
RE: how to pronounce numbers - brickviking - 06-26-2018, 08:54 AM
RE: how to pronounce numbers - rprosperi - 06-26-2018, 01:23 PM
RE: how to pronounce numbers - ttw - 06-26-2018, 05:45 AM
RE: how to pronounce numbers - rncgray - 06-26-2018, 07:29 AM
RE: how to pronounce numbers - grsbanks - 06-26-2018, 07:50 AM
RE: how to pronounce numbers - grsbanks - 06-26-2018, 12:19 PM



User(s) browsing this thread: 1 Guest(s)