how we can create optional or required parameters in SAS
macro...
Answer Posted / shiri
using keyword and positional parameters.
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
How do you convert basic cube to transaction cube and transaction cube to basic cube?
What is the role of sas grid administrator? : sas-grid-administration
How substr function works in sas?
Name validation tools used in SAS
How do you use the do loop if you don’t know how many times you should execute the do loop?
What are the difference between ceil and floor functions in sas?
If money were no object, what would you like to do?
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.
Approximately what date is represented by the SAS date value of 730?
Tell me about % include and % eval? : sas-macro
What do you know about sas data set?
Enlist the syntax rules followed in sas statements.
Explain the purpose of substr functions in sas programming.
Describe the function and untility of the most difficult SAS macro that you have written.
what is function of retain statment