<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Summary table with categories from multiple vars in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484682#M125843</link>
    <description>&lt;P&gt;We can do it by proc format.&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;</description>
    <pubDate>Tue, 07 Aug 2018 10:33:47 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2018-08-07T10:33:47Z</dc:date>
    <item>
      <title>Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484645#M125829</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I want to create a summary table that contains categories from different variables.&lt;/P&gt;&lt;P&gt;I am doing it via proc sql .&lt;/P&gt;&lt;P&gt;As you can see in the code it is quite long code.&lt;/P&gt;&lt;P&gt;I want to ask if there is a short way to do it via proc summary (or other proc)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;   data rawdata;
   input  ID  Cat1 $  Cat2 $ Cat3 $  Y; 
   cards;
   1  a  Y AU 100
   2  a  N AU 110
   3  a  Y AU 120
   4  a  N UK 130
   5  b  Y UK 140
   6  b  N UK 150
   7  b  Y USA 160
   8  b  N USA 170
   9  c  Y USA 180
   10 c  N USA 190
   ;
   run;

PROC SQL;
	create table output1 as
	select 	Cat1 as cat,
            count(*)  as no_customers,
			sum(y) as Total_Y 
	from rawdata
	group by Cat1
;
QUIT;

PROC SQL;
	create table output2 as
	select 	Cat2 as cat,
            count(*)  as no_customers,
			sum(y) as Total_Y 
	from rawdata
	group by Cat2
;
QUIT;

PROC SQL;
	create table output3 as
	select 	Cat3 as cat,
            count(*)  as no_customers,
			sum(y) as Total_Y 
	from rawdata
	group by Cat3
;
QUIT;

Data output_all;
set output1 output2  output3;
run;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 08:30:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484645#M125829</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-08-07T08:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484649#M125832</link>
      <description>&lt;P&gt;Something like:&lt;/P&gt;
&lt;PRE&gt;data rawdata;
   input id cat1 $ cat2 $ cat3 $ y; 
cards;
1  a  Y AU 100
2  a  N AU 110
3  a  Y AU 120
4  a  N UK 130
5  b  Y UK 140
6  b  N UK 150
7  b  Y USA 160
8  b  N USA 170
9  c  Y USA 180
10 c  N USA 190
;
run;

proc means data=rawdata;
  class cat:;
  var y;
  output out=want n=n sum=sum;
run;&lt;/PRE&gt;
&lt;P&gt;That will give you summary stats for each of the combinations, you can then where filter out what you dont want.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 08:38:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484649#M125832</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-08-07T08:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484650#M125833</link>
      <description>&lt;P&gt;It is nice but not what I need.&lt;/P&gt;&lt;P&gt;I need a table that includes &amp;nbsp;summary statistics per each category and not of combinations&lt;/P&gt;&lt;P&gt;In output I need to get 8 rows (as i get in the example i sent)&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 08:44:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484650#M125833</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-08-07T08:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484657#M125834</link>
      <description>&lt;P&gt;Please read:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;That will give you summary stats for each of the combinations, you can then where filter out what you dont want."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can filter the created dataset to keep only the outputs you want.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 08:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484657#M125834</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-08-07T08:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484663#M125835</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Please read:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;That will give you summary stats for each of the combinations, you can then where filter out what you dont want."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can filter the created dataset to keep only the outputs you want.&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can use the features of MEANS/SUMMARY to get the combinations you want and not need to filter.&amp;nbsp; More efficient and allows for many more&amp;nbsp;CLASS variables to be processed.&amp;nbsp; There are two statements for this TYPES and WAYS. For this scenario I think WAYS is most suitable.&amp;nbsp; You will need a data step to create CAT.&amp;nbsp; If you have character and numeric categorical variables you will need a couple of other options.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=rawdata missing;
   class cat:;
   ways 1;
   var y;
   output out=want n=n sum=sum;
   run;
data want;
   length cat $8;
   set want;
   cat = coalesceC(of cat1-cat3);
   run;
proc print;
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 375px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22294i6FD064C5AB5E2083/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 09:13:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484663#M125835</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2018-08-07T09:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484668#M125837</link>
      <description>&lt;P&gt;Didn't think of ways, nice, must remember that.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 09:26:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484668#M125837</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-08-07T09:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484678#M125841</link>
      <description>&lt;P&gt;Perfect solution!&lt;/P&gt;&lt;P&gt;Is it possible to add to "want table" &amp;nbsp;another field that is telling us the var name that the category belongs to.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;Cat "a" belong to &amp;nbsp;var Cat1 &amp;nbsp;so in the new column it will written "Cat1"&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cat "b" belong to&amp;nbsp;var&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Cat1 &amp;nbsp;so in the new column it will written "&lt;/SPAN&gt;&lt;SPAN&gt;Cat1"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cat "Y" belong to&amp;nbsp;var Cat2 &amp;nbsp;so in the new column it will written "Cat2"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cat "N" belong to&amp;nbsp;var Cat2 &amp;nbsp;so in the new column it will written "Cat2"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cat "AU" belong to&amp;nbsp;var Cat3&amp;nbsp; so in the new column it will written "Cat3"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cat "UK" belong to&amp;nbsp;var Cat3&amp;nbsp; so in the new column it will written "Cat3"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 10:11:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484678#M125841</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-08-07T10:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484682#M125843</link>
      <description>&lt;P&gt;We can do it by proc format.&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 10:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484682#M125843</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-08-07T10:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484700#M125850</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Perfect solution!&lt;/P&gt;
&lt;P&gt;Is it possible to add to "want table" &amp;nbsp;another field that is telling us the var name that the category belongs to.&lt;/P&gt;
&lt;P&gt;For example:&lt;/P&gt;
&lt;P&gt;Cat "a" belong to &amp;nbsp;var Cat1 &amp;nbsp;so in the new column it will written "Cat1"&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cat "b" belong to&amp;nbsp;var&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Cat1 &amp;nbsp;so in the new column it will written "&lt;/SPAN&gt;&lt;SPAN&gt;Cat1"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cat "Y" belong to&amp;nbsp;var Cat2 &amp;nbsp;so in the new column it will written "Cat2"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cat "N" belong to&amp;nbsp;var Cat2 &amp;nbsp;so in the new column it will written "Cat2"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cat "AU" belong to&amp;nbsp;var Cat3&amp;nbsp; so in the new column it will written "Cat3"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cat "UK" belong to&amp;nbsp;var Cat3&amp;nbsp; so in the new column it will written "Cat3"&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This is how I do it.&amp;nbsp; The option DESCENDTYPES put the rows in the order of the CLASS list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=rawdata missing chartype descendtypes;
   class cat:;
   ways 1;
   var y;
   output out=want n=n sum=sum;
   run;
data want;
   length varnum 8 variable $32 cat $8;
   set want;
   array _c[*] cat1-cat3;
   varnum   = findc(_type_,'1');
   variable = vname(_c[varnum]);
   cat = coalesceC(of cat1-cat3);
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 495px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22295i52E7291AC97D8BE9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 11:30:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484700#M125850</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2018-08-07T11:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484708#M125854</link>
      <description>&lt;P&gt;If some of the CLASS variables are numeric you can use the MLF option to cause PROC SUMMARY to convert the numeric variables to character and populate the new variable with the FORMATTED value.&amp;nbsp; In the example I have changed CAT2 to numeric.&amp;nbsp; Notice that the formatted value of CAT2 uses the default format BEST12 and that it is RIGHT justified.&amp;nbsp; I usually just LEFT the value of all CLASS variables.&amp;nbsp; Notice that CAT2 in the output dataset is $12.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data rawdata;
   input id cat1 $ cat2 cat3 $ y; 
   cards;
1  a  1 AU 100
2  a  0 AU 110
3  a  1 AU 120
4  a  0 UK 130
5  b  1 UK 140
6  b  0 UK 150
7  b  1 USA 160
8  b  0 USA 170
9  c  1 USA 180
10 c  0 USA 190
;;;;
run;

proc summary data=rawdata missing chartype descendtypes;
   class cat: / mlf;
   ways 1;
   var y;
   output out=want n=n sum=sum;
   run;
proc contents varnum;
   run;
data want;
   length varnum 8 variable $32 rowlabel $16;
   set want;
   array _c[*] cat1-cat3;
   varnum   = findc(_type_,'1');
   variable = vname(_c[varnum]);
   rowlabel = _c[varnum];
   run;
proc print;
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  Variables in Creation Order

 #    Variable    Type    Len

 1    cat1        Char      8
 2    cat2        Char     12
 3    cat3        Char      8
 4    _TYPE_      Char      3
 5    _FREQ_      Num       8
 6    n           Num       8
 7    sum         Num       8
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22297i21B54FB729D49D94/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 11:56:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484708#M125854</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2018-08-07T11:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484818#M125890</link>
      <description>&lt;P&gt;Morning&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp; &lt;EM&gt;"There are two statements for this TYPES and WAYS. For this scenario I think WAYS is most suitable. "&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May i request your comment/a line or two to&amp;nbsp; explain the distinction between the two. I just had a look at the documentation and not comprehending it well. I get the impression they both does the same. But, when you code I try to peek at it diligently but not grasping it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At your own convenience and when you can plz.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards as always&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 16:37:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484818#M125890</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-08-07T16:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484836#M125896</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;May i request your comment/a line or two to&amp;nbsp; explain the distinction between the two. I just had a look at the documentation and not comprehending it well. I get the impression they both does the same. But, when you code I try to peek at it diligently but not grasping it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;For the example WAYS 1; would be the same as TYPES CAT1-CAT3.&amp;nbsp; Same as CLASS list but shorter to type.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=rawdata missing chartype descendtypes;
   class cat: / mlf;
   &lt;STRONG&gt;types (cat:);&lt;/STRONG&gt;
   *ways 1;
   var y;
   output out=want n=n sum=sum;
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I rarely use WAYS.&amp;nbsp; I&amp;nbsp;usually make two way tables with several categorical variables crossed with one other&amp;nbsp;variable (treatment) to be displayed in columns with the other variables levels displayed in rows.&amp;nbsp; If I used WAYS 2; I would get&amp;nbsp;pair-wise two way tables but I want&amp;nbsp;only&amp;nbsp;treatment crossed with each of other (analysis) categorical variables.&amp;nbsp; For that TYPES is the solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example TYPES TRT*(AGE SEX); produces a table of all variables in&amp;nbsp;parentheses' crossed with TRT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
   set sashelp.class;
   trt = rantbl(456789,.4);
   run;
proc print;
   run;
proc summary data=class chartype descendtypes missing;
   class age sex trt / mlf;
   types trt*(age sex);
   output out=counts;
   run;
proc print;
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 273px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22308iE4AAB2FCD758171C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe this will be helpful.&amp;nbsp; Let me know if you have other questions.&amp;nbsp; I usually do better trying to answer&amp;nbsp;specific questions.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 17:26:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484836#M125896</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2018-08-07T17:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Summary table with categories from multiple vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484837#M125897</link>
      <description>&lt;P&gt;That's neat!&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp;so much for your time. Much appreciate it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 17:31:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summary-table-with-categories-from-multiple-vars/m-p/484837#M125897</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-08-07T17:31:26Z</dc:date>
    </item>
  </channel>
</rss>

