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 Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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