BookmarkSubscribeRSS Feed
Mgarret
Obsidian | Level 7

Hi all--

I have a proc transpose question. I would like to go from this:

YearOfficeSafey
Well-Being Admin Supportstaff trai

FY11

Office1

.90.67.78.99

To this:

          



YearFY11
OfficeOffice1
Safey0.9
Well-Being 0.67
Admin Support0.78
staff training0.99

I have been having a little trouble.

proc transpose data=have;

by

var

id

run;

Every combo I try  does not seem to work.

Any help is greatly appreciated.

Thanks

1 REPLY 1
shivas
Pyrite | Level 9

Hi, 

Try this...

data have;

input Year $ Office  $ Safey  WellBeing  AdminSupport stafftrai;

cards;

FY11 Office1 .90 .67 .78 .99

;

run;

proc transpose data=have out=want;

var year office Safey  WellBeing  AdminSupport stafftrai;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 929 views
  • 0 likes
  • 2 in conversation