Name statements that are recognized at compile time only?
Post New Answer View All Answers
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
how do you debug and test your sas programs? : Sas programming
Explain the difference between informat and format with an example.
describe about metadata object? : Sas-di
how can you create zero observation dataset? : Sas programming
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 use of the %include statement?
How sas treats the dsd delimiters?
What are the difference between sas functions and procedures?
What are the uses of sas?
Did you used proc test? when?
how to do user inputs and command line arguments in sas?
what is factor analysis? : Sas-administrator
What are the implications?
For what purposes have you used sas macros? : sas-macro