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 |
Is it possible to do sorting tranformation in charecter variable??if can tell me one eg..
How you can read the variables that you need?
What is the work of tranwrd function?
How we can call macros with in data step? : sas-macro
Difference between SAS STATA & SPSS?
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
What are the data types that sas contain?
what is the prob plot in clinical domain
What is the difference between order and group variable in proc report?
what are the sites did u refer for enquiries and doubts for SAS
in data set200 observation how to take 110,150,170 using sql procedure?
HOW DO WE CREATE A SAS STORED PROCESS IN SAS EG ?