Showing field after page 1

D

Don

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
 
F

fredg

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
 

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