You can produce page totals, but you have to do it via code. For example, assume you have a bound numeric control in the detail section of the form called v1, and you wish to Page sum it. Then:
(a) Make sure you expose the Page Header and Page Footer sections (via the Viewe Page Header/Footer menu options)
(b) Add an unbound control called Sumv1 to the page Footer section (vertically under the v1 entry)
(c) Add the following code behind the form, to trigger the the page header and page footer format events:
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)
Sumv1 = 0
End Sub
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Sumv1 = Sumv1 + v1
End Sub
(d) Modify the report and code appropriately, according to your particular needs.
Run it; it should produce the page totals and resets at the end and start of each page respectively.
Hope this helps,
Cheers,
Steve