How would you code the criteria to restrict the output to be
produced?
Answer Posted / sanjeev
proc sql;
select * from sashelp.class;
quit;
gives you an output.
proc sql noprint;
select * from sashelp.class;
quit;
no errors and output is restricted.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the good sas programming practices for processing large data sets?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
explain what is factor analysis? : Sas-administrator
explain the key concept of sas? : Sas-administrator
What are the statements that are executed only?
Tell me more about the parameters in macro? : sas-macro
Mention common programming errors committed in sas ?
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
Tell e how how dealt with..
What is a macro routine?
What is interleaving in SAS?
explain the difference between proc means and proc summary?
How many ways to overcome a missing values???
What is substr function?