How we will Developing new reports Using Data step
programming and Macros ?
Answers were Sorted based on User's Feedback
Answer / s.sudarshanreddy
data l;
input d;
file print ods;
put _ods_;
cards;
1
2
3
4
4
5
5
;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / pambrose
Assuming the question is intended to automate the code..lets say for a monthly report.
here is the outlook of the code
data run_report;
day1 = day(today());
if day1 = 1 then call execute('%monthlyreports');
else.........
....
.........
run;
%monthlyreport;
SAS report generation
%mend;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anjani sasprogrammer
data a;
input
emp_name $
emp_age
emp_sal
;
datalines;
a 23 20000
b 24 25000
;
run;
proc print data=a;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the maximum length of the macro variable?
What does error:1 mean?
What are symbol tables?Differemce between Local N Global Symbol tables.....
What is the order of evaluation of the comparison operators: + - * /** ()?
How would you identify a macro variable? : sas-macro
We want to merge file A and B. File A has variable age, file B provide birthdate. How to merge the data according to age in file B
Code the MEANS to produce output to be used later.
is QUALCOMM using SAS ?
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
proc means? proc sort? proc append? proc freq? proc print? proc content?
what is the diff b/w verification validation in sas