BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
arde
Obsidian | Level 7

Hi,

 

I would like to combine observations and display them with carriage returns:

 

have:

 

Country Line City
England 1 London
France 1 Paris
England 2 Liverpool
France 2 Marseille

 

 

want:

 

Country Combined
England Line 1 - London
Line 2 - Liverpool
France Line 1 - Paris
Line 2 - Marseille

 

 

thank you

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
data have;
infile cards expandtabs;
input Country $ Line City :$20.;
cards;
England 1 London
France 1 Paris
England 2 Liverpool
France 2 Marseille
;

proc sort data=have out=temp;
by Country  Line;
run;
data want;
 do until(last.Country);
  set temp;
  by Country;
  length combine $ 80;
  combine=catx(' (*ESC*)n ',combine,catx(' ','Line',Line,'-',City));
 end;
 keep Country combine;
run;

proc report data=want nowd;run;

Ksharp_0-1666698491429.png

 

View solution in original post

4 REPLIES 4
Tom
Super User Tom
Super User

Display them where?

The tool you are using to display the data makes a difference.

For example PROC REPORT supports the SPLIT character for normal test output but with ODS type output you might need to use other methods.

https://communities.sas.com/t5/SAS-Programming/How-to-split-a-variable-string-in-proc-report/td-p/73...

 

ballardw
Super User

Also the combination of output generator and file destination can impact such things. Proc Report writing to Excel may make additional "breaks" in the data resulting in output that looks more like

 

Line 1

- London
Line 2

- Liverpool

 

I realize that you do not actually want the text "Line 1" in your result. However the approach used if your have longer text with spaces may attempt to break in more places than your desired location. So details do matter such as overall length of text, output generator and file type. Note: if the data set is used for further analysis or manipulation this particular activity may make the remainder of your tasks much harder. For example, what if there are any other variables in the data? What should happen with them?

Ksharp
Super User
data have;
infile cards expandtabs;
input Country $ Line City :$20.;
cards;
England 1 London
France 1 Paris
England 2 Liverpool
France 2 Marseille
;

proc sort data=have out=temp;
by Country  Line;
run;
data want;
 do until(last.Country);
  set temp;
  by Country;
  length combine $ 80;
  combine=catx(' (*ESC*)n ',combine,catx(' ','Line',Line,'-',City));
 end;
 keep Country combine;
run;

proc report data=want nowd;run;

Ksharp_0-1666698491429.png

 

arde
Obsidian | Level 7
thank you so much!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 4 replies
  • 413 views
  • 2 likes
  • 4 in conversation