View Single Post
 
Old 01-05-2023, 02:39 PM
macropod's Avatar
macropod macropod is offline Windows 10 Office 2016
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Yes, that can be done, but even that might not be sufficient. Typically, a Find/Replace macro, for instance, needs to be coded so it processes the document backwards. That is typically achieved by changing:
.Forward = True
and, if your code uses it
.Collapse wdCollapseEnd
to:
.Forward = False
and
.Collapse wdCollapseStart
respectively.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote