create macros---you have 365 number of data and you need to
merge it throw the macros,,,,,,
data file1;
input a @@;
cards;
1 2 3 4
;
run;
data file2;
input a @@;
cards;
5 6 7 8
;
run;
data file3;
input a @@;
cards;
9 10 11 12
;
run;data file4;
input a @@;
cards;
13 14 15 16
;
run;
Answer Posted / jugaadu
%MACRO Data_Create;
%Do i = 1 %to 365;
INPUT a @@;
CARDS;
4*&i-3 4*&i-2 4*&i-1 4*&i
;
RUN;
%MEND;
%Data_Create;
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
Give an example where SAS fails to convert character value to numeric value automatically?
what are validation tools that are used in sas? : Sas-administrator
what is hash files in sas and why we are using this one in sas?
how does sas handle missing values in functions? : Sas programming
What is the role of administrative users? : sas-grid-administration
How to include or exclude specific variables in a data set?
Differentiate between proc means and proc summary.
what is sas business intelligence? : Sas-bi
what is change analysis in sas di ? : Sas-di
explain the concepts and capabilities of business object? : Sas-bi
Explain the use of proc gplot? : sas-grid-administration
What are the differences between sum function and using “+” operator?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
what is hierarchy flattening? : Sas-di
describe how to adjust the performance of data integrator? : Sas-di