☑ This topic is solved.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 08-14-2022 03:00 PM
(1682 views)
Is it impossible to save the lst file in SAS Studio? I've tried everything.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Save it where?
What did you try?
Try one of these?
Use ODS LISTING
ods listing file='myfile.lst';
Use PROC PRINTTO
proc printto print='myfile.lst'; run;
Or is your question how to LOOK at the listing file using SAS/Studio?
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Save it where?
What did you try?
Try one of these?
Use ODS LISTING
ods listing file='myfile.lst';
Use PROC PRINTTO
proc printto print='myfile.lst'; run;
Or is your question how to LOOK at the listing file using SAS/Studio?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
They both create a blank file
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks ODS works