BookmarkSubscribeRSS Feed
AmrAd
Obsidian | Level 7

Hi All,

I have a table as follows 

F1 F2
ACC_STATUS 1
ACC_STATUS 1
ACC_STATUS 1
ACC_STATUS 3
ACC_STATUS 1
ACC_STATUS_DESC Closed
ACC_STATUS_DESC Active
ACC_STATUS_DESC Active
ACC_STATUS_DESC Active
ACC_STATUS_DESC Active

 

 

and i need below output 

ACC_STATUS ACC_STATUS_DESC
1 Closed
1 Active
1 Active
3 Active
1 Active
4 REPLIES 4
Kurt_Bremser
Super User
data want;
merge
  have (
    rename=(f2=acc_status)
    where=(f1 = "ACC_STATUS")
  )
  have (
    rename=(f2=acc_status_desc)
    where=(f1 = "ACC_STATUS_DESC")
  )
;
drop f1;
run;
PaigeMiller
Diamond | Level 26

This doesn't seem like a transpose to me. This ought to work (although I have made a lot of assumptions)

 

data want;
    merge have(where=(f1='ACC_STATUS') rename=(f2=acc_status))
        have(where=(f1='ACC_STATUS_DESC') rename=(f2=acc_status_desc));
    drop f1;
run;
--
Paige Miller
MarkusWeick
Barite | Level 11

Yes, it looks rather like a table transformation from long format to wide format, than a Transpose.

Please keep the community friendly.
Like posts you agree with or like. Mark helpful answers as “accepted solutions”. Generally have a look at https://communities.sas.com/t5/Getting-Started/tkb-p/community_articles
Tom
Super User Tom
Super User

To use PROC TRANSPOSE you will need to have another variable that indicates which rows go together.

data have;
  row+1;
  input f1 :$32. f2 :$32. ;
  if f1 ne lag(f1) then row=1;
cards;
ACC_STATUS 1
ACC_STATUS 1
ACC_STATUS 1
ACC_STATUS 3
ACC_STATUS 1
ACC_STATUS_DESC Closed
ACC_STATUS_DESC Active
ACC_STATUS_DESC Active
ACC_STATUS_DESC Active
ACC_STATUS_DESC Active
;

Then you can use that as a BY variable.

proc sort;
  by row f1 ;
run;

proc transpose data=have out=want(drop=_name_);
  by row;
  id f1;
  var f2;
run;

Result

               ACC_     ACC_STATUS_
Obs    row    STATUS       DESC

 1      1       1         Closed
 2      2       1         Active
 3      3       1         Active
 4      4       3         Active
 5      5       1         Active

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 533 views
  • 3 likes
  • 5 in conversation