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
what is data access? : Sas-di
where are dashboard components are created and maintained? : Sas-bi
what is sas metadata repository? : Sas-bi
what r the job openings SAS for fresher graduates !
explain what is data set in sas? : Sas-administrator
What is the command used to find missing values?
Are you involved in writing the inferential analysis plan? Tables specifications?
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
How substr function works in sas?
what is the use of sas management console? : Sas-di
If a variable contains only numbers, can it be a character data type?
What are the difference between the sas data step and sas procs?
Mention what is the difference between nodupkey and nodup options?
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
What do the SAS log messages "numeric values have been converted to character" mean?