|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
参与一下。。。
- Sub ykcbf() '//2024.7.18 把选中的区域中的数值转换为万为单位且保留2位小数
- With Sheets("Sheet1")
- On Error Resume Next ' 如果没有选择,避免错误
- Set rng = Application.InputBox("请选择一个数据范围:", "选择范围", Type:=8)
- On Error GoTo 0 ' 重置错误处理
- If Not rng Is Nothing Then
- For Each cell In rng
- If IsNumeric(cell.value) Then
- value = cell.value / 10000
- cell.NumberFormat = "#,##0.00_);[Red](#,##0.00)"
- cell.value = value
- End If
- Next cell
- Else
- MsgBox "未选择任何范围。请选择一个数据范围再尝试转换。"
- End If
- ActiveWindow.DisplayZeros = False
- End With
- End Sub
复制代码
|
评分
-
1
查看全部评分
-
|