Re: sections and pagecount by Dave
Dave
Tue May 24 07:59:53 CDT 2005
Hi Christina,
You can use something like the following:
ActiveDocument.Sections(2).Range.Select
Selection.MoveEnd Unit:=wdCharacter, Count:=-1
MsgBox Selection.Range.ComputeStatistics(wdStatisticPages)
HTH,
Dave
"Chris" <Chris@discussions.microsoft.com> wrote in message
news:60511F26-3A17-4BAC-B2D5-EEEA8E81D642@microsoft.com...
> Hi,
>
> I want to count pages in a specific section, and futhermore I want to go
to
> the last page in the same specific section. How do I do that?
>
> Christina