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;

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