In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / parbhat517
PROC PRINT DATA = X;
WHERE SUBSTR(NAME,1,1) = 'A';
RUN;
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What are the difficulties u faced while doing vital signs table or dataset?
describe about metadata object? : Sas-di
What do the SAS log messages "numeric values have been converted to character" mean?
Mention few capabilities of sas framework.
Differentiate between format and informat? : sas-grid-administration
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 are 5 ways to perform a table lookup in sas? : Sas-administrator
What is the basic syntax style in SAS?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
What are the new features included in the new version of SAS Programming Language?
What is the order of application for output data set options, input data set options and SAS statements?
what is the use of proc sql? : Sas programming
how will you locate the sas platform applications? : Sas-bi
How do dates work in SAS data?
How to limit decimal places for the variable using proc means?