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 |
Mention few ways with which a “table lookup’ is done in sas programming.
how the sas basic syntax style described? : Sas-administrator
which stats created by proc means that are not created by proc summary or vice versa?
what is the need of INDEX in datasets?
What is the basic structure of the SAS base program?
my problem is to export my report to xsl.i can do that.but the problem is my report has 3 headings first heading should be printed with the merging of (1-5)cells and heading 2 should be of merge(2-4)cells?how to do this condition?
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
how can you get the single data set from the library(which has the number of data sets)?
3 Answers Accenture, Deloitte,
How do handle working under pressure?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
what is syntax of proc merge ?
What are the new features included in the new version of SAS Programming Language?