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
Can you explain the process of calendar?
what is transformation in sas data integration? : Sas-di
name the scheduler for scheduling job and explain the scheduler? : Sas-di
How is character variable converted into numeric variable and vice versa?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
Can you execute a macro within a macro? Describe. : sas-macro
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;
Give e an example of..
For what purpose would you use the RETAIN statement?
Explain append procedure?
how can you import .csv file in to sas? : Sas programming
What is the difference between the proc sql and data step?
Can you suggest us materials for sdtm mapping?
What are the uses of sas?
which date function advances a date, time or datetime value by a given interval? : Sas programming