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;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.