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 |
What are the ways to do a “table lookup” in sas?
how to extract data from SAP servers? Is like oracle servers or any other methods to extract please reply me.
i want for interview question & answer plz it need immediate send t my mail raviprakashmot@gmal.cm
How to read multiple excel sheets from a single excel file at once????
7 Answers HCL, Verinon Technology Solutions,
What system options would you use to help debug a macro? : sas-macro
AE datasets names? how many types?
explain what is data set in sas? : Sas-administrator
Difference between SAS STATA & SPSS?
Difference between nodup and nodupkey options?
differnce between 8.2 and 9.1.3
Identify statements whose placement in the DATA step is critical.
What would be the value of month at the end of data step execution and how many observations would be there?