BookmarkSubscribeRSS Feed
dkanand86
Calcite | Level 5

Hi All,

I am trying to create LST output file at my location, but the LST fiel created is empty. I dont know why. Please help.

proc printto

print="location/p1.lst" new;

run;

Regards

5 REPLIES 5
Reeza
Super User

Does your code generate any output?

dkanand86
Calcite | Level 5


I am running code on SAS 9.3 windows.

My ODS listing is off, but earlier it used to route the LST in LST file, but not now.

Please can you send the code so that i can ttry again.

Reeza
Super User

RTM:

Base SAS(R) 9.3 Procedures Guide, Second Edition

options nodate pageno=1 linesize=80 pagesize=60 source;
data numbers;
   input x y z;
   datalines;
14.2   25.2   96.8
10.8   51.6   96.8
  9.5   34.2  138.2
  8.8   27.6   83.2
11.5   49.4  287.0
  6.3   42.0  170.7
;
ods listing;
proc printto print='output-file'
new;
run;
proc print data=numbers;
   title 'Listing of NUMBERS Data Set';
run;
proc printto;
run;
ods listing close;
dkanand86
Calcite | Level 5


thanks it worked

Catch up on SAS Innovate 2026

Dive into keynotes, announcements and breakthroughs on demand.

Explore Now →
How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 5132 views
  • 1 like
  • 3 in conversation