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.
@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.
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
@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 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.