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

variable A                variable B

1                                 5

1                                 5

1                                 5

1                                 5

1                                 5

2                                 7

2                                 7

2                                 7

2                                 7

2                                 6

2                                 6

2                                 6

 

i want assign a sequence number to the above, when variable A =1 and variable B=5 then seq=1

 

when variable A=2 and Variable B=7 then seq=1, when variable A=2 and variable B=6 then seq=2

 

basically, i want to have a sequence within variable A, only when variable B change, then increase seq by order

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Similar to the code that Laurie proposed, but a little simpler (I think).

 

data have;
  input a b;
  cards;
1 5
1 5
1 5
1 5
1 5
2 7
2 7
2 7
2 7
2 6
2 6
2 6
;

data want;
  set have;
  by a b notsorted;
  if first.a then sequence = 1;
  else if first.b then sequence + 1;
run;

 

Art, CEO, AnalystFinder.com

View solution in original post

5 REPLIES 5
amygoodman
Calcite | Level 5

variable A                variable B

1                                 5

1                                 5

1                                 5

1                                 5

1                                 5

2                                 7

2                                 7

2                                 7

2                                 7

2                                 6

2                                 6

2                                 6

 

i want assign a sequence number to the above, when variable A =1 and variable B=5 then seq=1

 

when variable A=2 and Variable B=7 then seq=1, when variable A=2 and variable B=6 then seq=2

 

basically, i want to have a sequence within variable A, only when variable B change, then increase seq by order

 

LaurieF
Barite | Level 11

The only tricky thing in your data is that it is inherently unsorted. But I believe by-group processing is your answer. Here's how I did it:

data source;
infile cards;
input a
      b;
cards;
1                                 5
1                                 5
1                                 5
1                                 5
1                                 5
2                                 7
2                                 7
2                                 7
2                                 7
2                                 6
2                                 6
2                                 6
;
run;

data target;
set source;
by a b notsorted;
retain sequence;
select;
   when(first.a)
      sequence = 1;
   when(first.b) 
      sequence + 1;
   otherwise;
   end;
run;

 

Note the notsorted keyword on the by statement - because in a's second group 7 is higher than 6, the by processing would complain; notsorted suppresses that.

amygoodman
Calcite | Level 5
thanks! works great
art297
Opal | Level 21

Similar to the code that Laurie proposed, but a little simpler (I think).

 

data have;
  input a b;
  cards;
1 5
1 5
1 5
1 5
1 5
2 7
2 7
2 7
2 7
2 6
2 6
2 6
;

data want;
  set have;
  by a b notsorted;
  if first.a then sequence = 1;
  else if first.b then sequence + 1;
run;

 

Art, CEO, AnalystFinder.com

amygoodman
Calcite | Level 5

works great! thanks a lot !

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 6207 views
  • 1 like
  • 3 in conversation