Goto + Extend

Z

zSplash

Any way to use the Goto function and the Extend feature? (So that you can
goto Something, then extend (shift) goto SomethingElse (i.e., page 8) and
delete?)

TIA
 
H

Helmut Weber

Hi,
like this, to delete pages 2 and 3:
With Selection
.WholeStory
.Collapse
.ExtendMode = False
.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="2"
.ExtendMode = True
.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="4"
.Delete
.ExtendMode = False
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top