gpt4 book ai didi

excel - 使用货币格式设置多范围列表框的格式

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

我正在尝试使用货币格式(“$#,##0.00”)格式化列表框的第二列,但遇到了一些麻烦。任何帮助将不胜感激!

这是一些测试数据:

Data

Dim ws1 As Worksheet
Set ws1 = ThisWorkbook.Sheets("PivotTable")

Dim rng1 As Range
Dim LR1 As Long
LR1 = Range("A" & Rows.Count).End(xlUp).Row
Set rng1 = ws1.Range("A1:A" & LR1).SpecialCells(xlCellTypeVisible)

With Me.ListBox1
.ColumnCount = 2
.ColumnWidths = "120,100"

For Each Cell In rng1
.AddItem Format(Cell.Value, "$#,##0.00")
.List(.ListCount - 1, 1) = Cell.Offset(0, 1).Value
.List(.ListCount - 1, 2) = Cell.Offset(0, 2).Value 'Format this column
Next Cell
End With

这是我现在得到的结果:

Error Result

最佳答案

我认为@T.M.是对的。请尝试以下操作:

For Each Cell In rng1

.AddItem Cell.Value 'this is your first column
.List(.ListCount - 1, 1) = Format(Cell.Offset(0, 1).Value, "$#,##0.00") 'this is your second one
'you tried to format the 3rd one (which was not visible because of .ColumnCount = 2:
'.List(.ListCount - 1, 2) = Cell.Offset(0, 2).Value 'Format this column
Next Cell

说明:

.AddItem 填充第一列。 .List(row, column) 中的列计数以 0 开头,因此 .AddItem 填充列 0 这意味着 .List(.ListCount - 1, 1) 是您的第二列(不是第一列)。

关于excel - 使用货币格式设置多范围列表框的格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56632405/

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