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

Hi,

I need some help with creating groups this is what i want:

 

IF value1 < 33 then score = 20 ;
IF value1 < 33.5 then score = 12 ;
IF value1 < 34 then score = 13 ;
IF value1 < 35 then score = 3 ;
IF value1 < 36 then score = 2 ;
Else score = 4 ;

 

its not giving me the values I need . The cutoff eg. for the first row should be 33 and second should be 33.5?

 

Any ideas.

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

@AZIQ1 wrote:

Hi,

I need some help with creating groups this is what i want:

 

IF value1 < 33 then score = 20 ;
IF value1 < 33.5 then score = 12 ;
IF value1 < 34 then score = 13 ;
IF value1 < 35 then score = 3 ;
IF value1 < 36 then score = 2 ;
Else score = 4 ;

 

its not giving me the values I need . The cutoff eg. for the first row should be 33 and second should be 33.5?

 

Any ideas.


Multiple if statements as you have are all evaluated. So the LAST one in that is true gets teh assignment. That is what the ELSE does to the part after ELSE only when the immediately previous is not true.

You may also consider

IF 33 le value1 < 34 then score = 13

to set specific ranges.

View solution in original post

2 REPLIES 2
art297
Opal | Level 21

Add elses to all but the first if statement. i.e.,

 

IF value1 < 33 then score = 20 ;
else IF value1 < 33.5 then score = 12 ;
else IF value1 < 34 then score = 13 ;
else IF value1 < 35 then score = 3 ;
else IF value1 < 36 then score = 2 ;
Else score = 4 ;

HTH,

Art, CEO, AnalystFinder.com

 

ballardw
Super User

@AZIQ1 wrote:

Hi,

I need some help with creating groups this is what i want:

 

IF value1 < 33 then score = 20 ;
IF value1 < 33.5 then score = 12 ;
IF value1 < 34 then score = 13 ;
IF value1 < 35 then score = 3 ;
IF value1 < 36 then score = 2 ;
Else score = 4 ;

 

its not giving me the values I need . The cutoff eg. for the first row should be 33 and second should be 33.5?

 

Any ideas.


Multiple if statements as you have are all evaluated. So the LAST one in that is true gets teh assignment. That is what the ELSE does to the part after ELSE only when the immediately previous is not true.

You may also consider

IF 33 le value1 < 34 then score = 13

to set specific ranges.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 2 replies
  • 893 views
  • 2 likes
  • 3 in conversation