BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
pchen002
Obsidian | Level 7

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!

1 ACCEPTED SOLUTION

Accepted Solutions
Shmuel
Garnet | Level 18

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.

View solution in original post

2 REPLIES 2
Shmuel
Garnet | Level 18

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.

pchen002
Obsidian | Level 7
understood, thanks!!!!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1684 views
  • 1 like
  • 2 in conversation