using VBA to determine which page a subreport is currently on

A

a

Hello,

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

thanks
 
D

Duane Hookom

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].
 
Top