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

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

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
  • 7293 views
  • 2 likes
  • 5 in conversation