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
In sas, what are the areas that you are most interested in? : sas-grid-administration
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
What does the trace option do?
describe about metadata object? : Sas-di
how to change the execute of macro
what is sas olap server? : Sas-di
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
Describe the function and utility of the most difficult SAS macro that you have written?
Describe the ways in which you can create a macro variable?
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
how many display types available in sas bi dashboard? : Sas-bi
how to debug and test the sas program? : Sas-administrator
What are the functions which are used for character handling functions?
What is interleaving in SAS?
what is the use of proc contents and proc print in sas? : Sas-administrator