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

Hi,

I'm have a question on syntax here.

I want to classify each of seven variable values into one of two values and place the new values in a new column.

I have success with the following syntax:

CASE 

   WHEN t1.'MEMBER CATEGORY DESC'n = 'Miscellaneous' then 'Non-Safety'

   WHEN t1.'MEMBER CATEGORY DESC'n = 'State Miscellaneous' then 'Non-Safety'

   WHEN t1.'MEMBER CATEGORY DESC'n = 'State Industrial' then 'Non-Safety'

   ELSE 'Safety'

END


Can I roll the conditions into one WHEN statement and one THEN statement, for example:

CASE 

   WHEN t1.'MEMBER CATEGORY DESC'n = ('Miscellaneous' or 'State Miscellaneous' or 'State Industrial') then 'Non-Safety'

   ELSE 'Safety'

END

It doesn't work, but could it work with different syntax?

Thanks for your help.

Dru

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Use IN operator.

CASE

   WHEN t1.'MEMBER CATEGORY DESC'n IN ('Miscellaneous' , 'State Miscellaneous' , 'State Industrial') then 'Non-Safety'

   ELSE 'Safety'

END

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

Use IN operator.

CASE

   WHEN t1.'MEMBER CATEGORY DESC'n IN ('Miscellaneous' , 'State Miscellaneous' , 'State Industrial') then 'Non-Safety'

   ELSE 'Safety'

END

Dru
Calcite | Level 5 Dru
Calcite | Level 5

Thanks Tom, it worked perfectly!

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1621 views
  • 0 likes
  • 2 in conversation