BookmarkSubscribeRSS Feed
yogita_patel
Calcite | Level 5

I would like to transpose dataset below

yogita_patel_0-1650566019797.png

to this

yogita_patel_1-1650566053868.png

for each treatment ;

 

 

3 REPLIES 3
PaigeMiller
Diamond | Level 26

This isn't a transpose. Please take a look at the %TABLEN macro.

--
Paige Miller
Reeza
Super User
Your displayed data set doesn't have duplicates that I can see. This won't give you the formatting youw ant but it's close. The label of 'without adverse event likely belongs to the TRTAN column.

proc transpose data=have out=want;
by trtan;
id aesevn;
idlabel aesev;
var count;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 3 replies
  • 828 views
  • 0 likes
  • 4 in conversation