The following SAS program is submitted:
Data WORK.SALES;
do Year=1 to 5;
do Month=1 to 12;
X+1;
end;
end;
run;
How many obersevations are written to the WORK.SALES data set?
Answer is 1. Is it because there is no 'output' stated in the code thats why it did not give individual value for each month, the 1 observation is the sum of individual months up to 5 years? Please help, thanks!
Without OUTPUT staement it iterates to up the end and outputs one observation.
Adding OUTPUT staemant will result in 1 or 5 or 60 (=5*12) depending after which line it is entered.
Without OUTPUT staement it iterates to up the end and outputs one observation.
Adding OUTPUT staemant will result in 1 or 5 or 60 (=5*12) depending after which line it is entered.
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.