1.we can execute a macro with in a macro,by using call
symput and symget can any one give me one example?
2.We can create the macro variables by using %let,%do,macro
parameters,INTO clause in proc sql and call symput, can
any one give me example to create macro variable with INTO
clause and call symput?
3.
Answer Posted / aravind9882
data x;
a=98;
b=45;
call symput('m',a);
run;
%put &m;
proc sql;
select b into :m2 from x;
quit;
%put &m2;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
how does sas handle missing values in formats? : Sas programming
what is sas application server? : Sas-di
What sas features do you use to check errors and data validation?
Are you involved in writing the inferential analysis plan? Tables specfications?
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
Mention what are the data types does SAS contain?
What does the RUN statement do?
What are the applications primarily used by business analyst? : Sas-bi
What is the differnce between SDTM 3.1.2 to 3.1.1 version
What is by-group processing?
sas implementing companies in pune implementing clinical projects if anyone knows plz send ans immediately
How do you specify the number of iterations and specific condition within a single do loop?
how would you create multiple observations from a single observation? : Sas programming
Have you used macros? For what purpose you have used? : sas-macro
Differentiate between proc means and proc summary.