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.

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

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