Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
No Answer is Posted For this Question
Be the First to Post Answer
hi guys ...i have one query... data abc; input s w k g o t a m; cards; 1 2 3 4 5 6 7 8 2 3 4 5 6 7 8 9 ; run; i want the output to be the sorted order(only variables).observations should not be changed..
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
what is SAS/Graph?
What is a method to debug and test your SAS program?
how to delete the duplicate columns permanently in SQL
what is _error_?
2 Answers Axis Bank, Cognizant, JPMorgan Chase,
what are sas/access and sas/connect? : Sas programming
what is the need of INDEX in datasets?
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?
what is fact table and factless table?
What is the use of stop statement?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here