If your printout in the SAS session begins with page 256, it reveals the number of times you ran the program before
printing. Reset the beginning page number before your final run.
To reset the page number, the code is:
To set orientation and paper size:
To remove page breaks and put dashes (-) across the page:
To reinstall page breaks (there is no space between the quotes):
To left justify output:
To reset the page number, the code is:
options pageno=1;
To set orientation and paper size:
options orientation="landscape";
options orientation="portrait";
options papersize="legal";
options formdlim="-";
To reinstall page breaks (there is no space between the quotes):
options formdlim="";
To left justify output:
options nocenter;
No comments:
Post a Comment