In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / henry
proc print data=sashelp.class;
var height weight;
where upcase(substr(name,1,1))='A';
run;
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is your favorite all time computer book? Why?
What is the difference between the proc sql and data step?
what is the function of catx syntax? : Sas-administrator
Explain by-group processing?
Describe crosslist option in tables statement?
Tell me more about the parameters in macro? : sas-macro
Describe the function and untility of the most difficult SAS macro that you have written.
Explain data_null_?
Name any two sas spawners? : sas-grid-administration
what is SAS OPTIMIZATION?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
Explain the main difference between the sas procedures and functions? : Sas-administrator
What are the prime responsibilities of data integration administrator? : Sas-di
what is the use of proc sql? : Sas programming
why a stop statement is needed for the point= option on a set statement?