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 / 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 |
How many ways to overcome a missing values???
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
What are symbol tables?Differemce between Local N Global Symbol tables.....
What do the put and input function do?
what type of reports you are generating in your company...???
2 Answers GSK GlaxoSmithKline,
Mention what is PROC in SAS?
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
Which is the best training Institute for SAS Business Intelligence course?
how to handle in stream data containing semicolon in it?
What are _numeric_ and _character_ and what do they do?
what are methods to identify duplicate observations?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?