BookmarkSubscribeRSS Feed
TJ87
Obsidian | Level 7

Here's a scenario:

data have;

  input id x $;

  cards;

1  a

2  b

3  a or b

;

run

data want;

  input id x $;

  cards;

1  a

2  b

3  a

3  b

;

run;

Could someone please suggest code to get 'data want' from 'data have'? Thanks.

3 REPLIES 3
RichardinOz
Quartz | Level 8

Here is a one step solution

data have;

  Infile cards missover ;

  input id x $ @ ;

  output ;

  input @'or' x ;

  If not missing(x) then output ;

  cards;

1  a

2  b

3  a or b

;

run ;

Richard

Ksharp
Super User
data have;
  input id x $10.;
  cards;
1  a
2  b
3  a or b
;
run;
data want(drop=i x);
 set have;
 length y $ 10;
 do i=1 to countw(x);
  y=scan(x,i);
  if y ne 'or' then output;
 end;
run;
  

Xia Keshan

stat_sas
Ammonite | Level 13

data want(drop= i x rename=(y=x));

set have;

i=1;

do while (scan(x,i,'or ') ne ' ');

id=_n_;

y=scan(x,i,'or ');

output;

i=i+1;

end;

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
  • 3 replies
  • 1100 views
  • 0 likes
  • 4 in conversation