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;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 925 views
  • 1 like
  • 3 in conversation