How would you code a macro statement to produce information
on the SAS log? This statement can be coded anywhere.
Answer Posted / name is no need
why some people are giving the answer
Mprint,Mlogic,........,i think these are used when we want
to debug the macros.if we use the above options the macro
processor resolves the macros and results the Base SAS code
in log window ,but here the questions is How would you code
a macro statement to produce information on the SAS log.
So persons who are giving the answers could you please read
the questions properly and then give the answers if you
don't know the answer ,don't give any answer,this is not a
game.why some useless morons are giving these type of
stupid answers.
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
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.
Mention what is PROC in SAS?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
what r the job openings SAS for fresher graduates !
what are sas/access and sas/connect? : Sas programming
what is the basic structure sas administrator? : Sas-administrator
How would you determine the number of missing or nonmissing values in computations?
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
Mention some common errors that are usually committed in sas programming.
what is data access? : Sas-di
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
Which function is used to count the number of intervals between two sas dates?
What is connection profile? : sas-grid-administration
Mention sas system options to debug sas macros.