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 |
diff between nodup rec and ondup key???
What is the difference between Regression and Logistic Regression? Can u explain the Assumptions/Conditions?
What is shift table? have you ever created shift that?
2 Answers Accenture, Clinical Research, Quintiles,
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
What is the function of Stop statement in a SAS Program?
Explain the main difference between the sas procedures and functions? : Sas-administrator
What is the length assigned to the target variable by the scan function?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
Explain the use of proc print and proc contents?
what is business intelligence? : Sas-bi
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
what is Difference between PROC SQL JOINS and MERGE?