Answer Posted / beula.koduri24
macro facilty can control some portions of the sas program,based on a specfic conditions known as conditional processing.
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
what is star schema? : Sas-di
How we can call macros with in data step? : sas-macro
List out some key concept of SAS
How to test the debugging 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.
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
Do you know the features of sas?
To what type of programms have you used scratch macros?
for what purpose would you use the retain statement? : Sas programming
What is the difference between order and group variable in proc report?
What is the difference between one to one merge and match merge? Give an example.
What are the different servers in sas? : sas-grid-administration
What can be the size of largest dataset in SAS?
Describe the ways in which you can create macro variables?
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;