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 |
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
What are the features of base sas system?
How would you combine 3 or more tables with different structures?
Describe a time when you were really stuck on a problem and how you solved it?
What are the main differences between sas versions 8.2, 9.0, 9.1?
explain the concepts and capabilities of business object? : Sas-bi
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
Can anyone help me about SAS Realtime scenarios in Clinical field
What are the functions which are used for character handling functions?
I have 50 variables in one data set, In reports i want to generate every 10 variables in one page how we will write code in proc report.
How do you connect the desktop application to metadata server? : sas-grid-administration
wat is sas? is a package or programming language?