how does sas handle missing values in sort order? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
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.
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too
Which is the best training Institute for SAS Business Intelligence course?
What are the main differences between sas versions 8.2, 9.0, 9.1?
name some data transformation used in sas di? : Sas-di
how would you create multiple observations from a single observation? : Sas programming
firstobs and obs are working only option wise,but we are using infile statement with firstobs and obs in a statement wise? so firstobs,obs working at options and statemnts or not?
How many versions came upto now in SAS?
Mention what is the difference between nodupkey and nodup options?
who is the best SAS clinical Trainer in Hyderabad?
What is the command used to find missing values?
What are the difference between sas functions and procedures?