VBA word宏编程,全部替换后有个统计替换了多少个地方,如何获得这个统计值? 70
展开全部
Sub test()
Selection.Find.ClearFormatting
With Selection.Find
.Text = "估价"
.Forward = True
End With
Do While True
Selection.Find.Execute
If Selection.Find.Found Then
SPos=selection.start
if EPos=SPos then '关键,否则会死循环导致死机
exit do
else
EPos=SPos
endif
n = n + 1
Else
Exit Do
End If
Loop
MsgBox n
End Sub
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Sub test()
Selection.Find.ClearFormatting
With Selection.Find
.Text = "估价"
.Forward = True
End With
Do While True
Selection.Find.Execute
If Selection.Find.Found Then
n = n + 1
Else
Exit Do
End If
Loop
MsgBox n
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询