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
What are symget and symput? : sas-macro
what is the use of proc sql? : Sas programming
Mention the validation tools used in SAS?
Mention few capabilities of sas framework.
how the sas basic syntax style described? : Sas-administrator
How are numeric and character missing values represented internally?
what are the component of range? : Sas-bi
What are the functions which are used for character handling functions?
I need level 2 to 5 sas using companies in india
Hi,by usining ptf how we have to combine (likr merge)10 datasets at a time in the oracle database(and write a macro code also)?Like this i have a douts a lot if you dont mind may please send one text mail for me(madhusudhanap16@gmail.com)?
I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com
What are the data types does SAS contain?
Difference between sum function and using “+” operator?
Tell e how how dealt with..
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro