Range.Replace,用于单元格内容

时间:2018-01-15 12:09:57

标签: vba replace

想要替换单元格中的内容,以替换另一个单元格中的内容:

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}执行相同操作}}?

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