Approximately what date is represented by the SAS date value of 730?
No Answer is Posted For this Question
Be the First to Post Answer
Can you execute macro within another macro? : sas-macro
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
how do u validate the program which u have written.
What is the difference between %local and %global? : 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.
if x=round(26.3,10)-1 then x= how much and how explain?
What is the difference Using & and && in the macro variables
Define run-group processing?
Tell me about % include and % eval? : sas-macro
1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.
How do you download a flat file from Mainframe to your local PC using SAS?