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

Hello,

I have a list of variables:

data tab;

input var $;

datalines;

A

B

C

;

I need to create unique combinations of these variables:

A
AB
ABC
AC
B
BC
C

Thank you in advance for your help.


1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

The simplest way is using proc means . Otherwise if you consider about efficient, then using GRAYCODE().

Code: Program

data tab;
input var $;
datalines;
A
B
C
;
run;
proc transpose data=tab out=temp(drop=_name_);
var var;
run;
proc summary data=temp;
class col:;
output out=want(where=(_type_ ne 0));
run;

Xia Keshan

View solution in original post

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

Something like:

data tab;

  input var $;

datalines;

A

B

C

;

run;

proc transpose data=tab out=ttab;

  var var;

run;

data want (keep=var1-var3);

  set ttab;

  length var1 var2 var3 $1;

  array col{3};

  array var{3};

  do i=1 to 3;

    var1=col{i};

    output;

    do j=i+1 to 3;

      var{j}=col{j};

      output;

    end;

    var1=""; var2=""; var3="";

  end;

run;

Lucas
Calcite | Level 5

Hi,

thank you for quick response.

I used your code but one combination is missing (A C)

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Got a meeting now, will try to look later.  I had got to this, needs sorting of the characters and then nodupkey sort:

data tab;

  infile datalines missover;

  input var $;

datalines;

A

B

C

;

run;

proc sql;

  create table WANT as

  select  A.VAR as VAR1,

          B.VAR as VAR2,

          C.VAR as VAR3

  from    TAB A

  full join TAB B

  on      A.VAR ne B.VAR

  full join TAB C

  on      A.VAR ne C.VAR

  and     B.VAR ne C.VAR

  union all

  select  VAR as VAR1,

          "" as VAR2,

          "" as VAR3

  from    TAB ;

quit;

Ksharp
Super User

The simplest way is using proc means . Otherwise if you consider about efficient, then using GRAYCODE().

Code: Program

data tab;
input var $;
datalines;
A
B
C
;
run;
proc transpose data=tab out=temp(drop=_name_);
var var;
run;
proc summary data=temp;
class col:;
output out=want(where=(_type_ ne 0));
run;

Xia Keshan

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
  • 4 replies
  • 1842 views
  • 1 like
  • 3 in conversation