想要替换单元格中的内容,以替换另一个单元格中的内容:
Selection.Replace What:= *content of the G7 cell, Replacement:= Content of the H7 cell, LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
我可以为Range.Replace
中的变体“what”理解他必须在某些Range("G7")
中定义的单元格中获取内容,以及变体替换,对其他{{1}执行相同操作}}?
答案 0 :(得分:0)
您可以使用Range("G7").Value
之类的:
Selection.Replace What:=Range("G7").Value, Replacement:=Range("H7").Value, LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False