Answer Posted / lakshmi
There are two types of Parameters mainly used to pass a
value for a macro variable.Those are Positional Parameter
and Keyword Parameter regarding on macro variable where we
are creating whether local or globally i.e., inside macro
or outside macro.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What are the different versions of sas that you have used until now? : sas-grid-administration
What is the use of stop statement?
How does proc sql work?
for whom is sas data integration studio designed? : Sas-di
Where do you use proc means over proc freq?
What are the features of SAS?
what type of graphs we will create(for 2+years candidates)?
describe about metadata object? : Sas-di
do you prefer proc report or proc tabulate? Why? : Sas programming
Will it bother you if the guy at the next desk times the frequency and duration of your bathroom or coffee breaks on the grounds that ?you are getting paid twice as much as he is??
what techniques and/or procs do you use for tables? : 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.
I need level 2 to 5 sas using companies in india
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?