Russian_Laszy Posted March 12, 2008 Share Posted March 12, 2008 How do I make a header that says Page 1 of 30 as an example, I know you put ## in a merge field and it becomes a page number, but what is the symbol for total page numbers. Thanks Quote Link to comment Share on other sites More sharing options...
David Head Posted March 13, 2008 Share Posted March 13, 2008 You need to script the process to work out how many pages there are in the report. You will have a global number field for the number of pages (say called numPages). ...previous script steps in the reporting script... Enter Preview Mode [ ] // note no Pause Go to Record/Request/Page [Last] Set Field [ numPages; Get ( PageNumber ) ] Go to Record/Request/Page [First] Pause/Resume Script [indefinitely] ...rest of the script... In your footer of your report (or wherever you put the page numbering), you will need a text object containing a merge field and the reserved character for page number: Page ## of <<numPages>> See how you go with that. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.