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
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.