I have this piece of code working but problem is I need
to find the LAST occurance of a particular search string:
With wrdApp.Selection.Find
.ClearFormatting
.Text = mytext
.Forward = True
.Wrap = wdFindStop
.Execute
End With
How can I get the LAST occurrence and not the first? It could be in the
document zero to many times.
Thanks,
pmrsed
to find the LAST occurance of a particular search string:
With wrdApp.Selection.Find
.ClearFormatting
.Text = mytext
.Forward = True
.Wrap = wdFindStop
.Execute
End With
How can I get the LAST occurrence and not the first? It could be in the
document zero to many times.
Thanks,
pmrsed