如何替换范围内大于零的数字?
我可以替换给定范围内的一个特定单词或数字:
Sheet1.Columns("N").Replace What:="1", Replacement:="Good", LookAt:=xlWhole,
SearchOrder:=xlByRows, MatchCase:=False
现在,如果我想替换所有包含大于零的数字的1-1000000
内容,如果我使用循环语句,这会使宏运行缓慢。
我希望有这样的代码:
Sheet1.Columns("N").Replace What:=">0", Replacement:="Good", LookAt:=xlWhole,
SearchOrder:=xlByRows, MatchCase:=False`