深圳office培训 深圳excel培训
深圳excel培训 深圳office培训
咨询服务
深圳office培训
深圳office培训
office培训
excel培训
ppt培训
vba培训
access培训
word培训
visio培训
project培训
outlook培训
数据库培训
深圳access培训
深圳sql培训
深圳office培训
 

阿拉伯数字转英文vba代码


2016年8月10日 作者: 来源:


Public Function CUSA(ByVal MyNumber, Optional MyCri As Integer)

Dim Dollars, Cents, Cents2, Temp
Dim DecimalPlace, Count
ReDim Place(9) As String
Place(2) = ("Thousand" + " ")
Place(3) = ("Million" + " ")
Place(4) = ("Billion" + " ")
Place(5) = ("Trillion" + " ")
MyNumber = Trim(Str(MyNumber)) ' String representation of amount.
DecimalPlace = InStr(MyNumber, ".") ' Position of decimal place 0 if none.
If DecimalPlace > 0 Then ' Convert cents and set MyNumber to dollar amount.
Cents2 = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & "00", 2))
Cents = Left(Mid(MyNumber, DecimalPlace + 1) & "00", 2)
MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
End If
Count = 1
Do While MyNumber <> ""
Temp = GetHundreds(Right(MyNumber, 3))
If Temp <> "" Then Dollars = Temp & Place(Count) & Dollars
If Len(MyNumber) > 3 Then
MyNumber = Left(MyNumber, Len(MyNumber) - 3)
Else
MyNumber = ""
End If
Count = Count + 1
Loop

If MyCri = 1 Then '英文大写全写
Select Case Dollars
Case ""
Dollars = ""
Case "One "
Dollars = "One Dollar"
Case Else
Dollars = Dollars & "Dollars"
End Select
Select Case Cents2
Case ""

If Dollars <> "" Then
Cents2 = " Only"
Else
Cents2 = ""
End If
Case "One"
If Dollars <> "" Then
Cents2 = " And One Cent"
Else
Cents2 = "One Cent"
End If
Case Else
 If Dollars <> "" Then
Cents2 = " And" & (" " + Cents2) & "Cents"
Else
Cents2 = Cents2 & "Cents"
End If
End Select
CUSA = Dollars & Cents2

ElseIf MyCri = 0 Then

'英文大写略写

 Select Case Dollars
 Case ""
Dollars = ""
Case "One"
Dollars = ""
Case Else
Dollars = Dollars
End Select
Select Case Cents
Case ""
If Dollars = "" Then
Else
Cents = "And " & "00/100"
End If
Case "01"
If Dollars = "" Then
Cents = Cents2 & "Cent"
Else
Cents = "And " & Cents & "/100"
End If
Case Else
If Dollars = "" Then
Cents = Cents2 & "Cents"
Else
Cents = "And " & Cents & "/100"
End If
End Select
CUSA = Dollars & Cents
End If
End Function
Public Function GetHundreds(ByVal MyNumber) ' Converts a number from 100-999 into text
Dim result As String
If Val(MyNumber) = 0 Then Exit Function
MyNumber = Right("000" & MyNumber, 3)
If Mid(MyNumber, 1, 1) <> "0" Then ' Convert the hundreds place.
result = GetDigit(Mid(MyNumber, 1, 1)) & "Hundred "
End If
If Mid(MyNumber, 2, 1) <> "0" Then ' Convert the tens and ones place.
result = result & GetTens(Mid(MyNumber, 2))
Else
result = result & GetDigit(Mid(MyNumber, 3))
End If
GetHundreds = result
End Function
Public Function GetTens(TensText)
Dim result As String
result = ""

' Null out the temporary function value.
If Val(Left(TensText, 1)) = 1 Then
' If value between 10-19...
 Select Case Val(TensText)
Case 10: result = ("Ten" + " ")
Case 11: result = ("Eleven" + " ")
Case 12: result = ("Twelve" + " ")
Case 13: result = ("Thirteen" + " ")
Case 14: result = ("Fourteen" + " ")
Case 15: result = ("Fifteen" + " ")
Case 16: result = ("Sixteen" + " ")
Case 17: result = ("Seventeen" + " ")
Case 18: result = ("Eighteen" + " ")
Case 19: result = ("Nineteen" + " ")
Case Else
End Select
Else

' If value between 20-99...
Select Case Val(Left(TensText, 1))
Case 2: result = ("Twenty" + " ")
Case 3: result = ("Thirty" + " ")
Case 4: result = ("Forty" + " ")
Case 5: result = ("Fifty" + " ")
Case 6: result = ("Sixty" + " ")
Case 7: result = ("Seventy" + " ")
Case 8: result = ("Eighty" + " ")
Case 9: result = ("Ninety" + " ")
Case Else
End Select
result = result & GetDigit(Right(TensText, 1))
' Retrieve ones place.
End If
GetTens = result

End Function
Public Function GetDigit(Digit)
Select Case Val(Digit)
Case 1: GetDigit = ("One" + " ")
Case 2: GetDigit = ("Two" + " ")
Case 3: GetDigit = ("Three" + " ")
Case 4: GetDigit = ("Four" + " ")
Case 5: GetDigit = ("Five" + " ")
Case 6: GetDigit = ("Six" + " ")
Case 7: GetDigit = ("Seven" + " ")
Case 8: GetDigit = ("Eight" + " ")
Case 9: GetDigit = ("Nine" + " ")
Case Else: GetDigit = ""
End Select
End Function


阅读:1904 上一则:vba开发者需要掌握的知识及相关应用 下一则:控件跟随活动单元格vba代码

返回前页 返回顶部
温馨提示:本中心是深圳较为专业office培训机构、咨询及报名请先预约,电话:0755-82124110。
深圳地址:深圳红荔路四川大厦1109B-1110(3号龙岗线通新岭地铁站A出口10米)
热线:0755-82124110(福田、南山、宝安) 0755-22205758(罗湖、龙岗、龙华) 13510024571(东莞、惠州、珠海、广州)
北京地址:北京清华大学华业大厦三区三楼 版权所有:深圳万博计算机教育 粤ICP备11006947号-1
 
深圳信息系统项目管理师培训
深圳信息系统项目管理师培训 欢迎咨询!
您好!请点击这里咨询万博教育
深圳万博吴老师
您好!请点击这里咨询万博教育
深圳万博史老师
 
深圳信息系统项目管理师培训
深圳信息系统项目管理师培训