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

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 353 views
  • 1 like
  • 3 in conversation