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!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1164 views
  • 0 likes
  • 2 in conversation