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
Describe a time when you were really stuck on a problem and how you solved it?
Can you execute a macro within a macro? Describe. : sas-macro
Which command is used to perform sorting in sas program?
How many ways to overcome a missing values???
Approximately what date is represented by the SAS date value of 730?
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
i want for interview question & answer plz it need immediate send t my mail raviprakashmot@gmal.cm
What are the new features included in the new version of SAS Programming Language?
Tell me more about the parameters in macro? : sas-macro
What is a method to debug and test your SAS program?
what is the difference between floor and ceil functions in sas? : Sas-administrator
Explain how you can debug and test your SAS program?
Give some examples where proc report’s defaults are different than proc print’s defaults?