我已经使用记录函数创建了这个宏代码。
Sub Macro1()
Cells.Find(What:="Text to find", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=True, SearchFormat:=False).Activate
Range("E5").Select
ActiveCell.FormulaR1C1 = "text to enter"
Range("D6").Select
Cells.Find(What:="Text to find", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=True, SearchFormat:=False).Activate
Range("E9").Select
ActiveCell.FormulaR1C1 = "text to enter"
End Sub
我需要这个宏继续通过同一列,直到它找不到任何更多的搜索词实例,而不返回到列的顶部。
所以它从一列开始,每次它找到一个指定的单词时,它都会在 1 列中使用标签并粘贴到指定的单词中。
它继续在同一列中搜索指定的单词,直到它不从列的顶部开始就找不到它。
希望这有点道理。