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
what are the considerations when picking a SAS/STAT procedure?
it will become easy if uuu provide website linkssss and list of consultanciessssss
What are all the problems you faced while validating tables and reports?
Are you involved in writing the inferential analysis plan? Tables specfications?
Explain the difference between nodup and nodupkey options?
what is the difference between floor and ceil functions in sas? : Sas-administrator
Which command is used to perform sorting in sas program?
where are dashboard components are created and maintained? : Sas-bi
What are the limitations for memory allocation for SAS variables
What is the difference between match merge and one to one merge?
How will you generate test data with no input data?
how do you want missing values handled? : Sas programming
What are the difficulties u faced while doing vital signs table or dataset?
how the sas basic syntax style described? : Sas-administrator
what is intially documentation in sas?