A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Setting Up & Running Reports
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Show a Page Footer on last page only



 
 
Thread Tools Display Modes
  #1  
Old May 19th, 2004, 04:05 PM
jrh
external usenet poster
 
Posts: n/a
Default Show a Page Footer on last page only

I have a report (Change Order) that sometimes runs more
than one page. There is a page footer that displays the
calculated total of all items on the Change Order and has
a line for customer's acceptance. Is there a way to
display the Change Order total and customer's acceptance
on the last page only of a multi-page Change Order? Also,
I need to keep this at the bottom of the page. I tried
Group Footers but that doesn't put the section at the
bottom of the page.
Thanks,
jrh
  #2  
Old May 19th, 2004, 05:05 PM
fredg
external usenet poster
 
Posts: n/a
Default Show a Page Footer on last page only

On Wed, 19 May 2004 08:05:29 -0700, jrh wrote:

I have a report (Change Order) that sometimes runs more
than one page. There is a page footer that displays the
calculated total of all items on the Change Order and has
a line for customer's acceptance. Is there a way to
display the Change Order total and customer's acceptance
on the last page only of a multi-page Change Order? Also,
I need to keep this at the bottom of the page. I tried
Group Footers but that doesn't put the section at the
bottom of the page.
Thanks,
jrh


To print the Page Footer only on the last page of the report:
Add a control to the footer to calculate [Pages]:
="Page " & [Page] & " of " & [Pages]
Then code the Page Footer Format event:
Cancel = Not [Page] = [Pages]

To display the Group footer at a specific location on the page:
See Microsoft KnowledgeBase article
208979 "ACC2000: How to Print a Group Footer at a Specific Location"

--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
  #3  
Old May 19th, 2004, 07:41 PM
Fons Ponsioen
external usenet poster
 
Posts: n/a
Default Show a Page Footer on last page only

If you want to selectively hide one or more texrboxes I
have done it with the following in the onformat event of
the page footer:
Private Sub PageFooterSection_Format(Cancel As Integer,
FormatCount As Integer)
Me.Text22.Visible = ([Page] = [Pages])
End Sub
"Text22" is the box that in this cae will only print on
the last page.
Hope this helps.
FOns
-----Original Message-----
I have a report (Change Order) that sometimes runs more
than one page. There is a page footer that displays the
calculated total of all items on the Change Order and has
a line for customer's acceptance. Is there a way to
display the Change Order total and customer's acceptance
on the last page only of a multi-page Change Order? Also,
I need to keep this at the bottom of the page. I tried
Group Footers but that doesn't put the section at the
bottom of the page.
Thanks,
jrh
.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 03:50 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.