Showing field after page 1

  • Thread starter Thread starter Don
  • Start date Start date
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
 
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
 
Back
Top