格式标签标题与会计格式

时间:2014-12-16 04:17:39

标签: excel vba

我正在尝试获取一个标签,将其格式设置为应用了会计格式的单元格。

我试过了:

label.Caption = Application.WorksheetFunction.Text(ws.Cells(3, 59), "_($* #,##0.00_);_($* (#,##0.00);_($* ""-""??_);_(@_)")

label.Caption = Format(ws.Cells(3, 59), "_($* #,##0.00_);_($* (#,##0.00);_($* ""-""??_);_(@_)"

是否可以这样做?

由于

1 个答案:

答案 0 :(得分:0)

非常接近

Dim something as String
something = ws.Cells(3,59).Value
something = Format(something,"_($* #,##0.00_);_($* (#,##0.00);_($* ""-""??_);_(@_)")
label.Caption = something 

http://msdn.microsoft.com/en-us/library/office/gg251755%28v=office.15%29.aspx