gpt4 book ai didi

vba - 使用 vba 在公式前面插入撇号

转载 作者:行者123 更新时间:2023-12-04 21:20:46 24 4
gpt4 key购买 nike

我能够找到包含公式的单元格,甚至可以选择它们。现在我想在所选单元格的公式前面插入撇号。

这是我的代码:

Sub FindFormulaCells()
Dim inputRange As Range
Set inputRange = Application.InputBox("Select a Range:", "Insert Apostrophe in front of formula", , , , , , 8)

If inputRange Is Nothing Then Exit Sub
Set inputRange = inputRange.SpecialCells(xlCellTypeFormulas, 23)
inputRange.Select
End Sub

任何帮助。

最佳答案

永远不要在代码中使用 Select

Sub FindFormulaCells()
Dim inputRange As Range
Set inputRange = Application.InputBox("Select a Range:", "Insert Apostrophe in front of formula", , , , , , 8)

If inputRange Is Nothing Then Exit Sub
Set inputRange = inputRange.SpecialCells(xlCellTypeFormulas, 23)
dim c as range
for each c in inputRange
c.formula = "'" & c.formula
next c
End Sub

关于vba - 使用 vba 在公式前面插入撇号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50816992/

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