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

  Hi All

        I want to calculate amounts for a large number of codes eg:

        if code in ('BBB','PPP') then amount = 1;

                but I want it to exclude the codes PPPBB and PPPCC as that code will be calculated separately eg:

        if code in ('PPPBB','PPPCC') then amount = 2;

Sorry can't get my head around this.

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
Amir
PROC Star

Hi,

Looks like you have everything you need. Try:

data want;

  input code $;

  if code in ('BBB','PPP') then

    amount = 1;

  else

    if code in ('PPPBB','PPPCC') then

      amount = 2;

  datalines;

PPPBB

PPP

PPPCC

BBB

;

Regards,

Amir.

Message was edited by: Amir Malik - formatting

View solution in original post

5 REPLIES 5
Amir
PROC Star

Hi,

Looks like you have everything you need. Try:

data want;

  input code $;

  if code in ('BBB','PPP') then

    amount = 1;

  else

    if code in ('PPPBB','PPPCC') then

      amount = 2;

  datalines;

PPPBB

PPP

PPPCC

BBB

;

Regards,

Amir.

Message was edited by: Amir Malik - formatting

Havi
Obsidian | Level 7

Hi Amir

The 1st in statement will select all codes that have PPP in them including PPPBB which I do not want.

Amir
PROC Star

Hi,

Looking at the data set produced, I see the following:

Obs    code     amount

1     PPPBB       2

2     PPP         1

3     PPPCC       2

4     BBB         1

Did you want something different? If yes, then please give sample input data and the output data you want to see.

Regards,

Amir.

Havi
Obsidian | Level 7

Thanks Amir 🙂

Amir
PROC Star

Hi,

No problem. As you might have realised, the in operator, as used in the code, will check if the variable is equal to any one of the values in the parentheses, not contained in one of the values.

Hope that's clear.

Regards,

Amir.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 5 replies
  • 2235 views
  • 0 likes
  • 2 in conversation