add contd... if reprort continues

  • Thread starter Thread starter KRISH
  • Start date Start date
K

KRISH

Anybody help me how to add contd... if a section continues
to next page. Thanks.

Krish
 
You could do this in the page header, with statement like
IIF(page>1,"Original Page Header Title" & "
Cont.","Original Page Header Title")
Hope this helps.
Fons
 
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)
 
Back
Top