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  

Showing field after page 1



 
 
Thread Tools Display Modes
  #1  
Old May 12th, 2010, 10:41 PM posted to microsoft.public.access.reports
Don
external usenet poster
 
Posts: 992
Default Showing field after page 1

Hello, I have an Access 2003 report that show several fields on the top of
the first page (one of thses fields is the WorkOrderID), these fields are in
a "WorkOrderID" header. The work order details can span several pages, on
the 2nd, 3rd, etc pages I just want to show the WorkOrderID and not the other
fields that show on the first page. Can I somehow put the WorkOrderID field
in the PageHeader but tell it not to show on the first page?

Thanks
  #2  
Old May 12th, 2010, 11:27 PM posted to microsoft.public.access.reports
fredg
external usenet poster
 
Posts: 4,386
Default Showing field after page 1

On Wed, 12 May 2010 14:41:00 -0700, Don wrote:

Hello, I have an Access 2003 report that show several fields on the top of
the first page (one of thses fields is the WorkOrderID), these fields are in
a "WorkOrderID" header. The work order details can span several pages, on
the 2nd, 3rd, etc pages I just want to show the WorkOrderID and not the other
fields that show on the first page. Can I somehow put the WorkOrderID field
in the PageHeader but tell it not to show on the first page?

Thanks


Code the Page Header's Format event:
Me.[WorkOrderID].Visible = Me.[Page] 1
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
  #3  
Old May 12th, 2010, 11:30 PM posted to microsoft.public.access.reports
Marshall Barton
external usenet poster
 
Posts: 5,361
Default Showing field after page 1

Don wrote:

Hello, I have an Access 2003 report that show several fields on the top of
the first page (one of thses fields is the WorkOrderID), these fields are in
a "WorkOrderID" header. The work order details can span several pages, on
the 2nd, 3rd, etc pages I just want to show the WorkOrderID and not the other
fields that show on the first page. Can I somehow put the WorkOrderID field
in the PageHeader but tell it not to show on the first page?



Add a line of VBA code to the Page Header section's Format
event procedu

Me.txtWorkOrderID.Visible = (Me.Page 1)

--
Marsh
MVP [MS Access]
 




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 02:58 AM.


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