i.e. 100 records - "10 per page". Report would be 10 pages long.
Thanks.
--
D Hurd
dh...@ctechs.com
Denise,
In the underlying query, look for "top values" in properties and
select 100. If you are working from the same data each time you will
always get the same report. Post some details of what the report is
for and the query setup if you require more feedback
Regards
David
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.txtCountRecords Mod 10 = 0 Then
Me.Section(acDetail).ForceNewPage = 2
Else
Me.Section(acDetail).ForceNewPage = 0
End If
End Sub
Thanks.
That will work. I've even used it before and had forgotten.
Denise Hurd