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

Hi,

I have the following table that is generated by a transpose statement:

 

ID PrdGrp_1 PrdGrp_2 Prd_Grp_3 etc..

1 1 . .

2 1 3 .

3 2 4 9

etc.

 

The above will have PrdGrp_n based on the transactional data prior to the transpose step.

I am looking to create a variable that concatenates PrdGrp_1 to PrdGrp_n separated by '-' so it would look something like this.

 

ID PrdGrp_1 PrdGrp_2 Prd_Grp_3 Description

1 1 . . 1

2 1 3 . 1-3

3 2 4 9 2-4-9

etc.

 

Your help is greatly appreciated, thank you!

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

CATX using of to reference array.

 

CATX ("-", of array(*));

View solution in original post

2 REPLIES 2
Reeza
Super User

CATX using of to reference array.

 

CATX ("-", of array(*));

Haikuo
Onyx | Level 15

Just a note, you don't have to put them into an array in order to concatenate them:

 

Desp=catx('-', of Prodgrp:);
or 
Desp=catx('-', of prodgrp_1-prodprp_3);

And be aware, this method is more tolerant than Array method, you won't get warning if you mix up Char variables with Num variables.

 

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!

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
  • 4587 views
  • 2 likes
  • 3 in conversation