Of all your work, where have you been the most successful?
No Answer is Posted For this Question
Be the First to Post Answer
To what type of programms have you used scratch macros?
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
how we can create optional or required parameters in SAS macro...
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.
There are 200 observations in a dataset, i want to pull out the observation no's 100, 150,180,190 by using Proc SQL? How you can get it?
what is broad cast agent? : Sas-bi
how can u join the two tables without using proc sql Joins and nested queries ?
What are the prime responsibilities of data integration administrator? : Sas-di
What are TEAEs
2 Answers Accenture, Quintiles,
what is intially documentation for a sas programmer?
Mention what is the difference between nodupkey and nodup options?
How to read the file names of a text files from a shared drive using SAS?