BookmarkSubscribeRSS Feed
SASAna
Quartz | Level 8

Hi SAS users,

 

I have data coming like this in procedure code field - 1234|2345|4567 for a claim. I want to change make this to multiple lines by splitting the procedure codes pipes.

 

Original data  :

 

clm    procedure_code

1       1234|2345|4567 

 

Needed format :

 

clm  procedure_code

1       1234

1        2345

1        4567

 

Thanks,

Deepa

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20
data have;
input clm procedure_code $30.;
datalines;
1 1234|2345|4567 
;

data want;
   set have;
   do i = 1 to countw(procedure_code, '|');
      p_code = scan(procedure_code, i, '|');
      output;
   end;
   drop procedure_code i;
run;
CarmineVerrell
SAS Employee
Hi Deepa,
Here is a simple solution example if the data that you mentioned is static and always starts and stops in the same position within the original data in procedure_code. If it doesn't then we would need to modify the code to make it more flexible.

data orgdata;
infile cards;
input clm pro_code $14.;

cards;
1 1234|2345|4567
;
run;

Data newfmt(drop=pro_code);
set orgdata;
procedure_code=substr(pro_code,1,4);
output;
procedure_code=substr(pro_code,6,4);
output;
procedure_code=substr(pro_code,11,4);
output;
run;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 916 views
  • 1 like
  • 3 in conversation