- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 01-21-2020 01:52 AM
(675 views)
An interviewer asked this question,
"If you're not wanting any sas output from a data step, how would you code the data statement to prevent SAS from producing a set?"
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you do not want to create a data set, then do
data _null_;
set have;
run;