how we can create optional or required parameters in SAS
macro...
Answers were Sorted based on User's Feedback
Answer / ak
%macro Mtest (mvar);
here its required parameter.
----------------------------------------------
%macro Mtest(mvar1=abc);
.....
sas statements using macro variable mvar1
here mvar1 can be optional while calling macro Mtest
if parameter value is not send then it takes default value
as abc
.....
%mend;
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / sheetal
In macro definition you can create required parameters and
using %let or call symput you can create optional
parameters in sas macro
| Is This Answer Correct ? | 2 Yes | 9 No |
how to assign a macro value to a variable?
Diff between proc sql merge and join?
How does Mr.Lanka Srinivas teach SAS? Are his accomplishments real? What are the future prospects for SAS?
explain about various caches available in data integrator? : Sas-di
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?
What report output formats can you generate using SAS?
what is the primary variable in your study?
At compile time when a SAS data set is read, what items are created?
What is the Program Data Vector (PDV) and What are its functions?
% let A=3+4 what is result
I use NOCUM/NOPERCENT option in the tables statement like this Proc freq data = deepak; tables x y /nocum nopercent; run; Here I get nopercent and nocum in the output only for variables x and y. How do i do it for all variables? Deepak
in the flow of data step processing, what is the first action in a typical data step? : Sas programming