K KRISH Dec 1, 2003 #1 Anybody help me how to add contd... if a section continues to next page. Thanks. Krish
F Fons Ponsioen Dec 1, 2003 #2 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
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 Dec 1, 2003 #3 KRISH said: Anybody help me how to add contd... if a section continues to next page. Click to expand... 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)
KRISH said: Anybody help me how to add contd... if a section continues to next page. Click to expand... 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)