gpt4 book ai didi

excel - 在Excel VBA中将选择除以X

转载 作者:行者123 更新时间:2023-12-04 21:53:39 29 4
gpt4 key购买 nike

这可能是一个垒球,但我怎样才能将选择除以一定数量?在这种情况下: 2.204623 ?我知道您可以使用“PasteSpecial”,但我正在尝试弄清楚如何进行选择,然后分配一个热键来执行它(宏)。

Sub Makemt()
Dim Cell As Range
Dim div_mt As Long

div_kg = 2.204623

For Each Cell In Selection
Selection `here I would divide by div_mt

Next

End Sub

我不知道如何混合粘贴的能力特别划分选定的范围。
  Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlDivide, SkipBlanks _
:=False, Transpose:=False

最佳答案

如果要划分范围内的每个单元格

Sub Makemt()
Dim Cell As Range
Dim div_mt As Double

div_kg = 2.204623

For Each Cell In Selection

If IsNumeric(Cell.Value) Then
Cell = Cell/ div_kg
End If

Next Cell

End Sub

编辑:注意@ScottCraner 关于单元格中数值的注释

关于excel - 在Excel VBA中将选择除以X,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49202441/

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