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 |
Explain substr function?
How would you include common or reuse to be processed along with your statements?
What is LAG function?How is it used? can any one explain
3 Answers TRE, Verinon Technology Solutions,
How to specify variables to be processed by the freq procedure?
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
how can u create zero observation dataset?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
What is the difference between proportion and average?
How many tiers in sas architecture?
What do the PUT and INPUT functions do?
what is sas metadata repository? : Sas-bi
In the SAS Data step what is the difference between the subsetting done by Where and subsetting done by If?