
Very simple Range question - beggining the range on 3rd page onwards
Hi Santiago,
It *sounds* simple, but since there's no page object in Word, it isn't
entirely straightforward:
Dim r0 As Range, r1 As Range
With ActiveDocument
Set r0 = .Range
Set r0 = r0.GoTo(What:=wdGoToPage, Name:="3")
Set r0 = r0.GoTo(What:=wdGoToBookmark, Name:="\page")
Set r1 = .Range(Start:=r0.Start, End:=.Range.End)
End With
Word MVP FAQ: http://www.mvps.org/word
Reply ONLY to the newsgroup. Note: MVPs do not work for Microsoft.
Userform demystification: http://www.speakeasy.org/~mtangard/userforms.html
"Life is nothing if you're not obsessed." --John Waters
Quote:
> I am still trying to understand how to manipulate Ranges in Word. Maybe you
> can help me with this.
> How would I start a Range beginning on the 3rd page of a document all the
> way to the End?
> thanks