data have;
input ID $ Month:yymmn. Var1 $ Var2 $;
format month yymmn.;
cards;
1 200101 SD DE
1 200102 EF GH
1 200103 HK LM
2 200101 GH LM
2 200105 JH KJ
;
run;
proc transpose data=have out=interim;
by ID Month;
var Var1 Var2;
proc transpose data=interim out=want( drop = _name_ );
by ID;
var Col1;
ID _NAME_ Month;
run;
proc sql; drop table interim; quit;
I am very thankful to all of you for answering my questions spontaneously. Such a wonderful community. Thanks again.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.