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
Compare sas with other data analytics tools.
What are the different versions of sas that you have used until now? : sas-grid-administration
What is the use of divide function?
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.
Difference between SAS STATA & SPSS?
Mention sas system options to debug sas macros.
In proc transpose and data step with arrays which one you pick?
How long can a macro variable be? A token? : sas-macro
What is the difference between %put and symbolgen? : sas-macro
If a variable contains letters or special characters, can it be numeric data type?
Can you execute macro within another macro? : sas-macro
What do the PUT and INPUT functions do?
Mention what is SAS data set?
What do the SAS log messages "numeric values have been converted to character" mean?
how does sas handle missing values in procs? : Sas programming