Answer Posted / puspendra
SAS Macro is a user defined function(might be based on some
procedure). It is developed to avoid the calling of that
function (or procedure which is defined in the Macro)again
and agaian.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How to convert a numeric variable to a character variable?
Mention how to limit decimal places for the variable using proc means?
Describe what are the different levels of administrative users in sas? : sas-grid-administration
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
What do you know about sas and what we do? : sas-grid-administration
What are the parameters of scan function?
How would you define the end of a macro?
what are validation tools that are used in sas? : Sas-administrator
Name validation tools used in SAS
What do you understand by the term Normal Distribution?
What is the difference between match merge and one to one merge?
Give e an example of..
what is intially documentation in sas?
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.
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi