BookmarkSubscribeRSS Feed
samira
Obsidian | Level 7

Hello,

 

I am tying to change the name of the each region on the following dataset: 

 

Untitled.png

 

I have wrote very simpe data step in sas: 

 

data changName;
set data.region;
if region="STATE" then region="Missouri";
if region="EASTERN" then region="Eastern District";
if region="CENTRAL" then region="Central District";
if region="SOUTHWEST" then region="South Western District";
if region="SOUTHEAST" then region="South Eastern District";
if region="NORTHWEST" then region="North Western District";
run;

but what I got from this code is: 

Untitled.png

 

as you can see it does not show the entire strings! 

 

I would really be appriciate if someone help me with this. 

 

Thank you.

2 REPLIES 2
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
  • 2 replies
  • 917 views
  • 1 like
  • 3 in conversation