Jul 5, 2002 #1 flip79 MIS Joined Jul 5, 2002 Messages 23 Location US How do I start a report's page number at 3 and then continue counting the page numbers from there?
Jul 5, 2002 #2 jitter Technical User Joined Sep 2, 2001 Messages 351 Location US You could do this for the control source of the text box holding the page number: ="Page " & ([Page]+2) That will offset it by 2. There may be a much easier way through the gui... Upvote 0 Downvote
You could do this for the control source of the text box holding the page number: ="Page " & ([Page]+2) That will offset it by 2. There may be a much easier way through the gui...
Jul 5, 2002 Thread starter #3 flip79 MIS Joined Jul 5, 2002 Messages 23 Location US Thanks a lot! That was way easier than I thought the solution would be. Upvote 0 Downvote