Dan
01-20-2000, 12:55 PM
I am inserting a report into a document but want to have the numbering on the report follow the rest of the document. Is there a way to start the numbering on my report at say, 5 or 10? Thanks in advance.
Dan
Dan
|
View Full Version : page numbering on my reports Dan 01-20-2000, 12:55 PM I am inserting a report into a document but want to have the numbering on the report follow the rest of the document. Is there a way to start the numbering on my report at say, 5 or 10? Thanks in advance. Dan Travis 01-23-2000, 09:16 PM the nice thing about Page and Pages is that they are just Access Functions. To get them to start number differently (but maintain a new number each page) do this in the unbound field in your footer: e.g, to start with page 5 =(page + 4) & " of " & (pages + 4) & " pages" |