What is difference between Global n Local Macro Variables..?
Answer Posted / prakah
what is above said is exactly right
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
Describe the ways in which you can create macro variables?
What is the basic syntax of a sas program?
what is sas database server? : Sas-di
for whom is sas data integration studio designed? : Sas-di
How to include or exclude specific variables in a data set?
What was the last computer book you purchased? Why?
What is the function of output statement in a SAS Program?
how can you put a "trace" in your program? : Sas programming
What is the use of divide function?
Mention what are the data types does SAS contain?
What is the command used to find missing values?
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 are 5 ways to perform a table lookup in sas? : Sas-administrator
how sas deals with business intelligence? : Sas-bi
If you were told to create many records from one record, show how you would do this using array and with proc transpose?