BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mmagnuson
Quartz | Level 8

Hello,

 

I have a variable of ID numbers (0001) and there needs to be an A before all of the numbers

i.e. I have a variable ID: 0001  and I want it to be A0001.  There needs to be an A before all of the numbers in the column

I'm sure it's an easy thing but I can't figure it out!

Please help!!

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

Concatenate -->cats('A',your_variable)

View solution in original post

2 REPLIES 2
novinosrin
Tourmaline | Level 20

Concatenate -->cats('A',your_variable)

Astounding
PROC Star

If your variable is already defined as $ 4, you will need to expand the length to hold an additional character.  For example:

 

data want;

length ID $ 5;

set have;

id = 'A' || id;

run;

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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