In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / naveen
proc print data=abc;
var name;
where name contains="A";
run;
Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
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
Explain the difference between nodup and nodupkey options?
what are the best practices to process the large data sets in sas programming? : Sas-administrator
What is factor analysis?
Difference between sum function and using “+” operator?
Differentiate input and infile.
how will you locate the sas platform applications? : Sas-bi
What are the functions which are used for character handling functions?
What are the difference between the sas data step and sas procs?
what is program data vector? : Sas-administrator
What is the good sas programming practices for processing large data sets?
Do you need to know if there are any missing values?
Mention what is the difference between nodupkey and nodup options?
How you can read the variables that you need?
How would you identify a macro variable? : sas-macro