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 the use of proc sql? : Sas programming
What is slibref?
What are the scrubbing procedures in sas?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
What is interleaving in SAS?
What is a method to debug and test your SAS program?
what is sas olap server? : Sas-di
How would you identify a macro variable? : sas-macro
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
In proc transpose and data step with arrays which one you pick?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
how will you locate the sas platform applications? : Sas-bi
explain about data integrator metadata reports? : Sas-di
What is the use of the %include statement?
how to generate the test data in sas without input data? : Sas-administrator