gpt4 book ai didi

excel - 我可以修改此宏以仅在一列上运行吗?

转载 作者:行者123 更新时间:2023-12-04 22:31:34 25 4
gpt4 key购买 nike

我正在使用它来查找和替换值,它适用于我打开的整个工作表:

Sub replaceStringInCells()
Dim wTxt As String
Dim rTxt As String
Dim rNum As Integer
rNum = 0
For Each Row In Range("swapvalues").Rows '<== change the wordlist Name here as required
wTxt = Row.Cells(1).Value
rTxt = Row.Cells(2).Value
Selection.Replace What:=wTxt, Replacement:=rTxt, LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
rNum = rNum + 1
Next
End Sub

我想对其进行编辑,以便仅在 U 列上运行,而不是在整个工作表上运行。

我见过其他人尝试使用像 Set rng = Range("U:U") 这样的行来解决这个问题。但我不确定在上面的代码中在哪里添加它,或者这是否是最好的方法。

如果有人有建议,我将不胜感激。

最佳答案

 Range("U:U").Replace What:=wTxt, Replacement:=rTxt, LookAt:=xlPart

关于excel - 我可以修改此宏以仅在一列上运行吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52396906/

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