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
What is interleaving in SAS?
Can you explain the process of calendar?
Do you know the features of sas?
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
How to test the debugging in sas?
what is snowflake schema? : Sas-di
What are types of transport files?
Difference between nodup and nodupkey options?
Mention some common errors that are usually committed in sas programming.
Explain what is the use of proc gplot?
Explain the purpose of retain statement.
What are the difference between ceil and floor functions in sas?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
what are the categories that sas informats are used to the place the data? : Sas-administrator
What is the command used to find missing values?