This solution works, though it isn't very pretty...
Open your report using VB code, then use SENDKEYS to move about the report:
For example:
To go to page 3:
DoCmd.OpenReport "rptmEstimate", acViewPreview
SendKeys "{PgDn}{PgDn}", True
To go to the end of the report:
DoCmd.OpenReport "rptmEstimate", acViewPreview
SendKeys "{End}", True