BookmarkSubscribeRSS Feed
hwangnyc
Quartz | Level 8

Hi everyone,

 

I have a very wide data set. What I want is to create a variable that will indiciate the change from the baseline variable. 

 

What I would like is

If baseline is < any column except baseline and ID then change = Decrease

 

IDBaselineabcbcddsefewbewhgwhjgasdewrcsdasertChange
110......2...5.Decrease
2420....6.....Increase
322.......0..1Decrease
43352.........Increase
50000.........No Change

 

is that possible?

 

Thanks,

 

2 REPLIES 2
Kurt_Bremser
Super User

Define an array over the variables in question.

But you need to review your logical rule. Per your rule as stated, ID's 2 and 4 should be labeled "Decrease".

 


@hwangnyc wrote:

Hi everyone,

 

I have a very wide data set. What I want is to create a variable that will indiciate the change from the baseline variable. 

 

What I would like is

If baseline is < any column except baseline and ID then change = Decrease

 

ID Baseline abc bcd dse few bew hgw hjg asd ewr csd as ert Change
1 10 . . . . . . 2 . . . 5 . Decrease
2 4 2 0 . . . . 6 . . . . . Increase
3 2 2 . . . . . . . 0 . . 1 Decrease
4 3 3 5 2 . . . . . . . . . Increase
5 0 0 0 0 . . . . . . . . . No Change

 

is that possible?

 

Thanks,

 


 

Reeza
Super User

Use MIN to find the lowest values across your variables.

Then compare that to the BASELINE to create your change variable.

 

lowest =min (of abc --ert);
if lowest <= baseline then change='Decrease';
else change='Increase';

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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