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.



1.we can execute a macro with in a macro,by using call symput and symget can any one give me one e..

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

Post New Answer

More SAS Interview Questions

Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?

0 Answers  


What are the features of base sas system?

0 Answers  


How would you combine 3 or more tables with different structures?

7 Answers  


Describe a time when you were really stuck on a problem and how you solved it?

0 Answers   DELL,


What are the main differences between sas versions 8.2, 9.0, 9.1?

4 Answers  






explain the concepts and capabilities of business object? : Sas-bi

0 Answers  


in the flow of data step processing, what is the first action in a typical data step? : Sas programming

0 Answers  


Can anyone help me about SAS Realtime scenarios in Clinical field

0 Answers  


What are the functions which are used for character handling functions?

0 Answers  


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.

4 Answers  


How do you connect the desktop application to metadata server? : sas-grid-administration

0 Answers  


wat is sas? is a package or programming language?

4 Answers  


Categories