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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 2 replies
  • 419 views
  • 1 like
  • 3 in conversation