Hi all,
My data like this
ID Race
1 White
2 Black
3 White
I hope my new data is below
I know I should use the code proc transpose, but I am not sure how to use it? Thank you.
no need of proc transpose , you want to use proc sort
proc sort data=have out=want nodupkey; by id race; run;
View solution in original post
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Register Now
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.