ods _all_ close;
ods noproctitle;
* Create a text file;
ods listing file = "&sas_drv.:/SASFILES/Daily.txt";
ods escapechar='^';
options nodate nonumber orientation=landscape;
* Create the contents page from the dataset using proc report;
proc report data=final nowd split='~' noheader headskip spacing=2 ls=142;
/* List columns to be use in the report;*/
column order_date order_code;
define order_date/display "Date" left width = 10;
define 'order_code'n/display "Order_code" left spacing=2;
run;
ods listing close;
Hi,
I am generating output as text file, could someone help me with options how to avoid the up arrow shown in below image. I know when the data starts in next page this arrow is coming.
I am using proc report to generate text file.
Thanks & regards,
vnreddy
Try adding this before your PROC REPORT step, or on the PROC statement itself, to set the page size to be as large as possible.
options ps=max;
Show us your code 🙂
And what program are you using to view that text file? That might be a "feature" of that program indicating a "continued from previous page" or similar.
Try adding this before your PROC REPORT step, or on the PROC statement itself, to set the page size to be as large as possible.
options ps=max;
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 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.