excel中数字转换英文大写程序_excel数字转大写英文

2020-02-29 其他范文 下载本文

excel中数字转换英文大写程序由刀豆文库小编整理,希望给你工作、学习、生活带来方便,猜你可能喜欢“excel数字转大写英文”。

Function NumbToEnglish(ByVal MyNumber)

Dim Temp

Dim Inte, Dec

Dim DecimalPlace, Count

ReDim Place(9)As String

Place(2)= “ Thousand ”

Place(3)= “ Million ”

Place(4)= “ Billion ”

Place(5)= “ Trillion ”

' 将数字Mynumber转换成字符串格式,并去掉多余空格

MyNumber = Trim(Str(MyNumber))

' 查找小数点“.”位置

DecimalPlace = InStr(MyNumber, “.”)

' 如果找到小数点...If DecimalPlace > 0 Then

' 转换小数部分

Temp = Len(Mid(MyNumber, DecimalPlace + 1))

Count = 1

Dec = “”

Do While Count1))

End If

Count = 1

Do While MyNumber “”

' 将最后的三位数字转换成英文数字

Temp = ConvertHundreds(Right(MyNumber, 3))

If Temp “” Then Inte = Temp & Place(Count)& Inte

If Len(MyNumber)> 3 Then

' 如果整数部分大于三位,再向前移动三位数字重复进行转换

MyNumber = Left(MyNumber, Len(MyNumber)19 之间?

If Val(Left(MyTens, 1))= 1 Then

Select Case Val(MyTens)

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

'..否则,它是介于 20-99 之间.Select Case Val(Left(MyTens, 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

' 转换其中的个位数.If Val(Right(MyTens, 1))= 0 Then

Result = Result & “ ” & ConvertDigit(Right(MyTens, 1))

Else

Result = Result & “-” & ConvertDigit(Right(MyTens, 1))

End If

End If

ConvertTens = Result

End Function

' 定义子函数,转换个位数

Private Function ConvertDigit(ByVal MyDigit)

Select Case Val(MyDigit)

Case 1: ConvertDigit = “One”

Case 2: ConvertDigit = “Two”

Case 3: ConvertDigit = “Three”

Case 4: ConvertDigit = “Four”

Case 5: ConvertDigit = “Five”

Case 6: ConvertDigit = “Six”

Case 7: ConvertDigit = “Seven”

Case 8: ConvertDigit = “Eight”

Case 9: ConvertDigit = “Nine”

Case Else: ConvertDigit = “”

End Select

End Function

' 定义子函数,转换小数部分

Private Function ConvertDecimal(ByVal MyDecimal)

Select Case Val(MyDecimal)

Case 1: ConvertDecimal = “One”

Case 2: ConvertDecimal = “Two”

Case 3: ConvertDecimal = “Three”

Case 4: ConvertDecimal = “Four”

Case 5: ConvertDecimal = “Five”

Case 6: ConvertDecimal = “Six”

Case 7: ConvertDecimal = “Seven”

Case 8: ConvertDecimal = “Eight”

Case 9: ConvertDecimal = “Nine”

Case Else: ConvertDecimal = “Zero”

End Select

End Function

Sub bbb()MsgBox NumbToEnglish(123.31)End Sub

然后再按ALF+F11,切换回EXCEL窗口,假如100在A1单元格,你在B1单元格输入 =NUMBTOENGLISH(A1)最后下拉填充即可。

大写转换

大写转换函数对于财务和会计领域的朋友们来说,在excel在录入数据后,将数字自动转换为人民币大写是每天都要做的工作之一。由于使用的频繁和简便,IT部落窝小编今天专门写下这篇......

数字大写

数字:零、壹、贰、叁、肆、伍、陆、柒、捌、玖 数量单位:拾、佰、仟、万、亿金额单位:元(圆)、角、分、零、整(原则上角后不写“整”)......

excel中中文转换英文

============== Excel中文转拼音(简称版)============== 打开Excel->工具->宏->Viaual Basic编辑器在弹出来的窗口中对着VBAproject点右键->插入->模块 下面会出现一个名为"......

练习大写数字教学反思

刀豆文库小编为你整合推荐7篇练习大写数字教学反思,也许这些就是您需要的文章,但愿刀豆文库能带给您一些学习、工作上的帮助。......

练习大写数字教学反思

练习大写数字教学反思(精选19篇)由网友“Rylynn”投稿提供,小编在这里给大家带来练习大写数字教学反思,希望大家喜欢!篇1:练习大写数字教学反思 《练习4》中的“学用字词句”要求......

《excel中数字转换英文大写程序.docx》
将本文的Word文档下载,方便收藏和打印
推荐度:
excel中数字转换英文大写程序
点击下载文档
相关专题 excel数字转大写英文 英文 数字 程序 excel数字转大写英文 英文 数字 程序
[其他范文]相关推荐
[其他范文]热门文章
下载全文