BookmarkSubscribeRSS Feed
Sandy10
Calcite | Level 5

Hi,

 

I have below data :

 

ID Category   Value

1   Income       100

2   Income       200

1   Country      India

2   Country      Australia

3   Country     Canada            

 

I need output like below;

 

ID Income   Country

1  100         India 

2  200         Australia

3                 Canada

 

Please advise how to do this in SAS. Thanks

3 REPLIES 3
Astounding
PROC Star

Right now, the income values have to be character because VALUE also contains character values.  If you want INCOME to be numeric, you will need a DATA step:

 

proc sort data=have;

by id;

run;

 

data want;

set have;

by ID;

retain income country;

if category = "Country" then Country = Value;

else if category = "Income" then income = input(value, 8.);

if last.ID;

output;

income = .;

country = " ";

run;

novinosrin
Tourmaline | Level 20

Hi @Sandy10 seems a straight forward transpose after sorting:

 

data have;
input ID  Category $  Value :$10.;
cards;
1   Income       100
2   Income       200
1   Country      India
2   Country      Australia
3   Country     Canada 
;

proc sort data=have;
by id category;
run;
proc transpose data=have out=want(drop=_name_);
by id;
var  value;
id category;
run;

 

EDIT: Oh, well. I missed to notice @Kurt_Bremser suggestion earlier making my post just redundant 

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

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1134 views
  • 2 likes
  • 4 in conversation