Hi All,
How to transpose table 1 into table 2? Thanks!
TABLE 1
Client StartDate EndDate OrderID1 OrderID2 OrderID3
1 01JAN 31JAN 1 . .
1 01FEB 29FEB 1 2 .
2 01MAR 31MAR 1 2 3
TABLE 2
Client StartDate EndDate OrderID
1 01JAN 31JAN 1
1 01FEB 29FEB 1
1 01FEB 29FEB 2
2 01MAR 31MAR 1
2 01MAR 31MAR 2
2 01MAR 31MAR 3
proc transpose
data=have
out=want (
drop=_name_
rename=(col1=orderid)
)
;
by client startdate enddate;
var orderid:;
run;
proc transpose
data=have
out=want (
drop=_name_
rename=(col1=orderid)
)
;
by client startdate enddate;
var orderid:;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.