BookmarkSubscribeRSS Feed
kishangabani
Obsidian | Level 7

Hello,

 

As SAS learner, 

I would like to know about OUTPUT statement theory and beginner to expert level example.

How do I get all questions on particular OUTPUT statement.

 

 

Thanks to all.

2 REPLIES 2
PaigeMiller
Diamond | Level 26

If data step code has no OUTPUT statement, then all observations in the data step are output to the data set.

 

If data step code has one or more OUTPUT statements, then only those observations where the OUTPUT statement is executed are included in the output data set.

 

A trivial example:

Data class;
    set sashelp.class;
    if weight>height then output;
run;
    
--
Paige Miller

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 958 views
  • 2 likes
  • 3 in conversation