Can you use a macro within another macro? If so how would
SAS know where the current acro ended and the new one
began?
Answer / kiran
Yes, we can use a macro with in another macro
for example:
%MACRO REPORT; ---MACRO
statement 1;
statement 2;
....
....
%MACRO REPORT1();--BEGINING OF NEW MACRO "REPORT 1" WITH
IN "REPORT" MACRO
%MEND REPORT1;---STATEMENT TO TELL THE END OF REPORT1 MACRO
%MEND REPORT;----STATEMENT TO TELL THE END OF REPORT MACRO
| Is This Answer Correct ? | 4 Yes | 0 No |
HOW DO WE CREATE A SAS STORED PROCESS IN SAS EG ?
what does the run statement do? : Sas programming
what is sas data set?
what has been your most common programming mistake? : Sas programming
Which function is used to count the number of intervals between two sas dates?
tell me about use of arrays in sas
explain the difference between proc means and proc summary?
Hi Friends, My name is Priya,am new to this Forum. am looking for SAS Platform Administration Interview Questions.I searched every where but I couldn't find any where.please can anyone help me with the FAQ's. It would be a great favor to me if you can email the Interview Questions to priyafeb84@gmail.com
describe about physical data integration? : Sas-di
How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i have no file Conversion?
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
Describe the ways in which you can create macro variables? : sas-macro