BookmarkSubscribeRSS Feed
carmendee
Obsidian | Level 7

Example data

Supervisor Empl Eval_Date Score

Johnson    Smith 1/1/15       25

Johnson    Miller 1/1/15       26

Hanson     Poole 1/2/15       25

 

Desired Ouput:

Name        Eval_Date  Score

Johnson    

Smith        1/1/15          25

Miller         1/1/15         26

Hanson

Poole        1/2/15          25

 

I'm trying to accomplish this without a proc but can if I need to.

2 REPLIES 2
Astounding
PROC Star

I'm not certain that this is a good idea, but here's one way:

 

data want;

set have;

by Supervisor notsorted;

if first.Supervisor then do;

   Name = Supervisor;

   output;

end;

Name = Empl;

D = Eval_Date;

S = Score;

output;

keep Name D S;

rename D = Eval_Date;

rename S = Score;

run;

 

Good luck.

stat_sas
Ammonite | Level 13

Another way using sql

 

data have;
input Supervisor $ Empl $ Eval_Date anydtdte. Score;
format Eval_Date mmddyy8.;
datalines;
Johnson    Smith  1/1/15       25
Johnson    Miller 1/1/15       26
Hanson     Poole  1/2/15       25
;

 

proc sql;
select distinct supervisor as supervisor from have
union
select * from have
order by supervisor, empl;
quit;

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
  • 2 replies
  • 1368 views
  • 1 like
  • 3 in conversation