How would you code the criteria to restrict the output to be
produced?
Answer Posted / ganesh
In my view use noprint option to restrict the output to be
produce
data g;
input name$ no sal;
datalines;
a 1 2500
b 2 3500
;
proc print data=g noprint;
run;
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
Explain the purpose of retain statement.
How can you limit the variables written to output dataset in data step?
What are the uses of sas?
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
what are informats in sas? : Sas-administrator
What does the RUN statement do?
Explain the difference between informat and format with an example.
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
for what purpose would you use the retain statement? : Sas programming
What is the basic structure of a sas program?
What is the difference between %put and symbolgen? : sas-macro
how will you location sas platform applications available from web browser? : Sas-bi
Mention the category in which sas informats are placed?
what is program data vector? : Sas-administrator
Explain input and put function?