I have a data table that consists of customers ID's and their telephone numbers in the following manner:
| Customer ID | telephone number |
|---|---|
5550 | 9613456789 |
| 5550 | 9613657894 |
| 6758 | 9611567854 |
Which function enables me to have the following format :
| Customer ID | telephone number 1 | telephone number 2 |
|---|---|---|
| 5550 | 9613456789 | 9613657894 |
| 6758 | 9611567854 | . |
Thank you in advance for all your help
Hello,
data have;
input Customer_ID telephone_number $;
datalines;
5550 9613456789
5550 9613657894
6758 9611567854
;
proc transpose data=have out=want(drop=_name_) prefix=Telephone;
by Customer_ID;
var telephone_number;
run;
Have a look at proc transpose.
Hello,
data have;
input Customer_ID telephone_number $;
datalines;
5550 9613456789
5550 9613657894
6758 9611567854
;
proc transpose data=have out=want(drop=_name_) prefix=Telephone;
by Customer_ID;
var telephone_number;
run;
Thank you that was very helpfull
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.