using VBA to determine which page a subreport is currently on

  • Thread starter Thread starter a
  • Start date Start date
A

a

Hello,

within the detail_format() function can VBA determine which page the
sub-report is currently on?

thanks
 
You can try (untested) code like:
Me.Parent.Report.Page
to get the parent page. You might need a control on the main report bound to
[Page].
 
Back
Top