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 are the statements in proc sql?
Differentiate between proc means and proc summary.
What are all the problems you faced while validating tables and reports?
What is the difference between match merge and one to one merge?
Mention sas system options to debug sas macros.
What is the difference between %put and symbolgen? : sas-macro
what are the types of interactive display types? : Sas-bi
explain the key concept of sas? : Sas-administrator
what are validation tools that are used in sas? : Sas-administrator
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
What is the maximum length of the macro variable? : sas-macro
what does the run statement do? : Sas programming
what is data access? : Sas-di
what is star schema? : Sas-di
Explain append procedure?