Can you excute a macro within a macro? Describe.

Answer Posted / ravikumar

yes we can excute the macro with in the macro ,it is possiple

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do the mod and int function do? : Sas programming

578


How to include or exclude specific variables in a data set?

646


what are _numeric_ and _character_ and what do they do? : Sas programming

674


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1797


What commands are used in the case of including or excluding any specific variables in the data set?

592






What is the difference between nodupkey and nodup options?

592


where to use sas business intelligence? : Sas-bi

580


Mention few capabilities of sas framework.

692


Explain what is SAS informats?

623


Give some examples where proc report’s defaults are different than proc print’s defaults?

596


What makes sas stand out to be the best over other data analytics tools?

587


What is the basic syntax style in SAS?

616


Name and describe few sas character functions that are used for data cleaning in brief.

668


What are the uses of sas?

705


how does sas handle missing values in formats? : Sas programming

577