i have a null dataset with 20 variables. i want to upload the
variables which contain name like a or k or anything in
another dataset.how can we create the dataset?
Answer Posted / alok karan
data _null_ new;
set qqq;
where name like "q%" or name like "w%";
put name total;
run;
proc print data=new;
run;
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How would you invoke a macro? : sas-macro
how are numeric and character missing values represented internally? : Sas programming
What is slibref?
Explain proc univariate?
what is factor analysis? : Sas-administrator
what is ae onset date n what is RDS
Mention what is the difference between nodupkey and nodup options?
Describe the ways in which you can create a macro variable?
Describe what are the different levels of administrative users in sas? : sas-grid-administration
what is data governance? : Sas-di
Have you ever used the SAS Debugger?
what is business intelligence? : Sas-bi
How does the internal authentication work in sas? : sas-grid-administration
What are the ways in which macro variables can be created in sas programming?
Describe the function and untility of the most difficult SAS macro that you have written.