In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / a
proc print data=;
where name like 'A%';
run;
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
In sas, what are the areas that you are most interested in? : sas-grid-administration
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 are the 3 components in sas programming?
how does sas handle missing values in sort order? : Sas programming
Explain the use of proc print and proc contents?
explain about various caches available in data integrator? : Sas-di
List down the reasons for choosing sas over other data analytics tools.
Explain data step in SAS
for what purpose would you use the retain statement? : Sas programming
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
What is the difference between input and infile statement?
explain the key concept of sas? : Sas-administrator
why is a stop statement needed for the point=option on a set statement? : Sas programming
How would you invoke a macro? : sas-macro