BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
eagles_dare13
Obsidian | Level 7

I have this data in an excel: 2 rows and 2 columns...

Name  abc
Age   14


Nameabc
Age14

I want to represent it like this: 

Name Age
abc  14

NameAge
abc14

How can i use proc transpose to do this? I am looking for a method that would work even if Name / Age variables are null in the input

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

There is probably a more direct way, but at least the following will accomplish the task:

proc import datafile="c:\temp\have.xlsx" out=have

  replace dbms=excel;

  sheet=sheet1;

  getnames=no;

run;

proc transpose data=have out=to_export (drop=_:);

  var f1 f2;

run;

filename toimport 'c:\temp\toimport.csv' lrecl=256;

data _null_;

  set to_export;

  file toimport dsd delimiter=',' termstr=crlf;

  put (_all_)(:);

run;

proc import datafile="c:\temp\toimport.csv" out=want

  replace dbms=csv;

run;

View solution in original post

4 REPLIES 4
art297
Opal | Level 21

There is probably a more direct way, but at least the following will accomplish the task:

proc import datafile="c:\temp\have.xlsx" out=have

  replace dbms=excel;

  sheet=sheet1;

  getnames=no;

run;

proc transpose data=have out=to_export (drop=_:);

  var f1 f2;

run;

filename toimport 'c:\temp\toimport.csv' lrecl=256;

data _null_;

  set to_export;

  file toimport dsd delimiter=',' termstr=crlf;

  put (_all_)(:);

run;

proc import datafile="c:\temp\toimport.csv" out=want

  replace dbms=csv;

run;

naveen_srini
Quartz | Level 8

If using a datastep:

data want;

set have;

Name=vname(abc);

Age=abc;

drop abc;

run;

Reeza
Super User

I don't know how big your excel file is but there's an option to transpose in Excel as well - copy>paste special>Transpose

Tom
Super User Tom
Super User

You can do it with PROC TRANSPOSE, but you do need to know the names of the two columns in the original table.

Here is your example with the input Excel file replaced with a data step so that others can play with the code.

data have ;

  input Name $ abc ;

cards ;

Age 14

;;;;

proc transpose data=have out=want name=Name ;

  id name;

  var abc ;

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

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
  • 4 replies
  • 1919 views
  • 1 like
  • 5 in conversation