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 is the difference between order and group variable in proc report?
How would you define the end of a macro?
I need level 2 to 5 sas using companies in india
What is the SAS data set?
Which command is used to save logs in the external file?
explain about data integrator metadata reports? : Sas-di
What is the difference between SAS functions and procedures?
how does sas handle missing values in formats? : Sas programming
what is information maps?
Explain the purpose of retain statement.
What are the different operating system platforms in which we can use sas? : sas-grid-administration
Describe the function and untility of the most difficult SAS macro that you have written.
what are sas bi dashboard components? : Sas-bi
describe how to adjust the performance of data integrator? : Sas-di
What is the basic structure of a sas program?