SAS Community,
I am creating a PROC REPORT table (with SAS ODS PDF) where the number of columns exceeds what I can fit across on one page. The balance of the columns of data flow on to the second page and I would like to create a stub column (a repeat of the first column) to maintain a reference point for the data on the second page.
I have tried duplicating the first column after the column in the column statement following the natural break in the report, from page 1 to page 2, but PROC REPORT reformats the layout and I do not obtain the effect I want.
Can someone assist me with repeating the first column on the first page to the second page of the report to represent the balance of columns of data on the second page of the report?
Steve Dybas
Such a column is called an "ID column." An ID column (and all the columns to its left) appears on every page of the report.
To specify a column as an ID column, add the ID option to the DEFINE statement for the column.
DEFINE MYCOL / ID;
Such a column is called an "ID column." An ID column (and all the columns to its left) appears on every page of the report.
To specify a column as an ID column, add the ID option to the DEFINE statement for the column.
DEFINE MYCOL / ID;
Or change
options papersize=(10in,20in);
to make PDF as big as enough to hold all these variables in a page.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.