gpt4 book ai didi

excel - Excel VBA 中的 .NumberFormat 选项是什么?

转载 作者:行者123 更新时间:2023-12-01 16:25:37 26 4
gpt4 key购买 nike

您能否告诉我 Excel VBA 中的 .NumberFormat 格式选项是什么?如您所知,Excel 2010 支持以下类型:

enter image description here

我知道我们可以将文本类型设置为:

.NumberFormat ="@"

或数字:

.NumberFormat = "0.00000"

您能否告诉我 VBA 中的类型还有哪些其他选项?

最佳答案

请注意,这是在 Excel for Mac 2011 上完成的,但对于 Windows 应该是相同的

宏:

Sub numberformats()
Dim rng As Range
Set rng = Range("A24:A35")
For Each c In rng
Debug.Print c.NumberFormat
Next c
End Sub

结果:

General     General
Number 0
Currency $#,##0.00;[Red]$#,##0.00
Accounting _($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)
Date m/d/yy
Time [$-F400]h:mm:ss am/pm
Percentage 0.00%
Fraction # ?/?
Scientific 0.00E+00
Text @
Special ;;
Custom #,##0_);[Red](#,##0)

(我刚刚随机选择了一个自定义条目)

关于excel - Excel VBA 中的 .NumberFormat 选项是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20648149/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com