Hi,
How could I create a dataset with three columns like below:
LOC_ID | Date | Demand
..... | .... | ....
Where demand is always 0 and Date is from 01JAN2017 to 30JUN2017 and LOC_ID is always C1.
Thank you!
data want;
length LOC_ID $8 Date Demand 8;
LOC_ID = "C1";
demand = 0;
do Date = '01JAN2017'd to '30JUN2017'd;
output;
end;
run;
data want;
length LOC_ID $8 Date Demand 8;
LOC_ID = "C1";
demand = 0;
do Date = '01JAN2017'd to '30JUN2017'd;
output;
end;
run;
The only thing I'd add would be
format date date9.;
for better readability. 😉
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.