Hi Everyone,
Could you please help me to code the below logic.
I have a flag variable in my data set and I want to create a Rank variable in the following way.
PS: I'm using SAS 9.4.
flag | Rank |
0 | 1 |
1 | 2 |
1 | 2 |
1 | 2 |
0 | 3 |
1 | 4 |
1 | 4 |
0 | 5 |
1 | 6 |
1 | 6 |
1 | 6 |
Thanks a lot in Advance.
data want;
set have;
by flag notsorted;
retain rank 0;
if first.flag then rank + 1;
run;
data want;
set have;
by flag notsorted;
retain rank 0;
if first.flag then rank + 1;
run;
This is helpful.
Thanks..)
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!
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.