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 |
Describe the ways in which you can create macro variables?
What is the function of output statement in a SAS Program?
How we will Developing new reports Using Data step programming and Macros ?
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
What is a post baseline?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set.
what are system option ? give few examples ? what are dataset options and dataset statements ? if there is a keep option and keep statement ? which one is executed first ? Difference between a WHERE statement and IF statement ? what is the advantage of using WHERE statement option on the dataset ?
is data integration and etl programming is same? : Sas-di
what versions of sas have you used (on which platforms)? : Sas programming
What are the difference between sas functions and procedures?
What r all the reporting procedures...?
proc means? proc sort? proc append? proc freq? proc print? proc content?