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

I just came across code that looks like this:

data test;
input x1;
select (x1);
  when (1) do
    x2 = 1;
    x3 = 1;
  end;
  otherwise;
end;
datalines;
1
0
;

and I immediately thought "ERROR because of missing semicolon!", but this code works, and it even works as obviously intended.

Does anybody know why SAS does not complain here?

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Yes, it's the iterative DO statement (with x2 as the index variable), just written in a "peculiar" way, not a DO-END block.

View solution in original post

2 REPLIES 2
FreelanceReinh
Jade | Level 19

Yes, it's the iterative DO statement (with x2 as the index variable), just written in a "peculiar" way, not a DO-END block.

Kurt_Bremser
Super User

Oh yes, that's it! It works, but it nicely fits a schlockmercenary quote I posted yesterday:

"When it's stupid and it works, it's still stupid, and you're lucky"

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
  • 994 views
  • 3 likes
  • 2 in conversation