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 |
describe about metadata object? : Sas-di
What are the difference between the sas data step and sas procs?
What does the RUN statement do?
what is change analysis in sas di ? : Sas-di
Explain the use of proc gplot? : sas-grid-administration
what is ae onset date n what is RDS
How would you combine 3 or more tables with different structures?
i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
What are the statements that are executed only?
Give e an example of..
Mention few ways with which a “table lookup’ is done in sas programming.