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

I am trying to add 3 columns of data in a table:

VAR_1 IND_1 IND_2

new_VAR = VAR_1 + IND_1 + IND_2  -> MAX of 30

The two indicator variables two have 0,1 values, the first variable has a value from 0 to 30.  30 is the maximum result I want.  How can I "neatly" add these three columns such that no resulting value is above 30? I am open to SAS SQL procedures.  I know of a messy way by creating a very lengthy case statement and subtracting 30, but would prefer the use of a more concise method, such as a function, if one exists.  Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

Is this what you want?

new_VAR = min(30, VAR_1 + IND_1 + IND_2);

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

Is this what you want?

new_VAR = min(30, VAR_1 + IND_1 + IND_2);

EricinVA
Calcite | Level 5

That did the trick.  Thank you

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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