BookmarkSubscribeRSS Feed
Astounding
PROC Star

SAS actually supplies simple but powerful tools that let you accomplish this.  Consider:

 

data want;

set have;

by Employee_ID notsorted;

length newvar $ 5;

if last.Employee_ID=1 then newvar='True';

else newvar='False';

run;

 

The BY statement in a DATA step is "must-have" knowledge.

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 15 replies
  • 7218 views
  • 2 likes
  • 5 in conversation