Hello Experts,
Do you know please, how to inidcate to go to the next page while odsout obj() reporting ?
Sometimes the data has a few rows, so one page is enough.
I would like to report on two pages if my data has many rows.
Thank you for your help !
My code is :
OPTION NODATE NONUMBER;
OPTIONS PAPERSIZE=A4;
options orientation=portrait;
OPTIONS TOPMARGIN=.001 in BOTTOMMARGIN=.001 in LEFTMARGIN=.001 in RIGHTMARGIN=.001 in;
ODS NORESULTS;
ODS PDF FILE = "&Publipostage.\xxxx_&xxxx..pdf" dpi=1800;
ODS ESCAPECHAR = "^";
Have you looked at the PAGE method?
Page();
creates a page break when executed.
The serious question though is how to know when you want to execute it.
Or a Table_start / table_end pair.
Have you looked at the PAGE method?
Page();
creates a page break when executed.
The serious question though is how to know when you want to execute it.
Or a Table_start / table_end pair.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.