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..)
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.