add contd... if reprort continues

K

KRISH

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

Krish
 
F

Fons Ponsioen

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
 
M

Marshall Barton

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top