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 |
what is the prob plot in clinical domain
How would you remove a format that has been permanently associated with a variables?
What is program data vector (pdv) and what are its functions?
How to convert .xls file into CSV format?
How would you determine how far down on a page you have printed in order to print out footnotes?
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
What is Linear Regression?
What is SAS? What are the functions does it performs?
what are the methods that you would employ to fine tune your SQL extract process using SAS/Access or Proc SQL?
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
How do handle working under pressure?
What do you code to create a macro? : sas-macro