KRISH said:
Anybody help me how to add contd... if a section continues
to next page.
Add a text box to the detail section, name it txtLineCount,
set its ControlSource expression to =1 and RunningSum
property to Over Group.
Now. let's say your page footer has a label control named
lblContinued with caption "Continued". Add code to the
page footer Format event procedure:
Me.lblContinued.Visible = (Me.txtLineCount > 1)