BookmarkSubscribeRSS Feed
SanjayM
Calcite | Level 5
Hi

I am using PROC PRINT to generate a report

How can I get Page numbers and Total no of Pages.

Regards
Grasshopper
1 REPLY 1
Cynthia_sas
SAS Super FREQ
Hi:
See the posting in ODS and BASE SAS Reporting forum:
http://support.sas.com/forums/thread.jspa?threadID=1796&tstart=0

In brief --
the special Escapechar functions {thispage} and {lastpage} will give you the current page and the last page (total page). However, you must first declare an ESCAPECHAR to ODS:[pre]
ods escapechar='~';[/pre]
then you must use the Escapechar with the special function in a title or footnote: [pre]
title 'This is Page ~{thispage} of ~{lastpage}'; [/pre]

Last, but not least, you must understand where this special Escapechar function will work:
RTF, PDF -- YES
HTML -- NO (there are no page numbers for HTML)
LISTING -- TXT -- NO

For more help with Page X of Y page numbering with EG, you should contact Tech Support. There are ways to do Page X of Y page numbering with the LISTING destination, however, you MUST post-process the LISTING destination file in order to accomplish the task and it would not generally be a viable option for a stored process.

cynthia

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 775 views
  • 0 likes
  • 2 in conversation