BookmarkSubscribeRSS Feed
chennupriya
Quartz | Level 8

Hi ,

I have a dataset like in data a an dnow i want the dataset to look like in data b  

 

can anyone pls help

 

data a      
customer phone phonetype  
lori 12356 cellphone  
lori 45623 homephone  
lori 23687 workphone  
       
datab      
customer cellphone homephone workphone
lori 12356 45623 23687
2 REPLIES 2
slchen
Lapis Lazuli | Level 10
proc transpose data=have out=want(drop=_:);
by customer;
id phonetype;
var phone;
run;
Steelers_In_DC
Barite | Level 11

here you go:

 

data have;
infile cards dsd;
input customer$     phone$     phonetype $10.;
cards;
lori,12356,cellphone
lori,45623,homephone
lori,23687,workphone
;

proc transpose data=have out=want (drop=_name_);by customer;id phonetype;var phone;

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1282 views
  • 0 likes
  • 3 in conversation