<?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: Re-organize table using proc tabulate or report or transpose? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648278#M194159</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/132289"&gt;@Cruise&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With the statement&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Label a='Education'; &lt;/FONT&gt;, we get the following output.&amp;nbsp;What would the expected output look like?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-16 à 15.48.26.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39514i1A60218EC657E465/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture d’écran 2020-05-16 à 15.48.26.png" alt="Capture d’écran 2020-05-16 à 15.48.26.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 May 2020 13:49:18 GMT</pubDate>
    <dc:creator>ed_sas_member</dc:creator>
    <dc:date>2020-05-16T13:49:18Z</dc:date>
    <item>
      <title>Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648227#M194134</link>
      <description>&lt;P&gt;Hi Folks:&lt;/P&gt;
&lt;P&gt;Can you help me transform data from HAVE to DESIRED OUTPUT structure? I don't need to output it to a data set.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&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="WANTED TABLE.png" style="width: 586px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39500iDED3529742C7627E/image-size/large?v=v2&amp;amp;px=999" role="button" title="WANTED TABLE.png" alt="WANTED TABLE.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA HAVE;
INPUT GROUP	Desc $ A B;
CARDS;
1	Min	1	4
1	P50	2	5
1	Max	3	6
2	Min	3	7
2	P50	4	2
2	Max	5	3
3	Min	7	5
3	P50	6	4
3	Max	8	6
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'm not sure whether proc tabulate or report or transpose the best option.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 02:09:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648227#M194134</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2020-05-16T02:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648240#M194141</link>
      <description>&lt;P&gt;TABULATE:&lt;/P&gt;
&lt;P&gt;Can produce the output directly because it can place a VAR variable in the row dimension.&lt;/P&gt;
&lt;PRE&gt;title "TABULATE: (a b) * desc, group";
proc tabulate data=have;
  class group;
  class desc / order=data;
  var a b;
  table 
    (a b) * desc=''
  , group * sum='' * f=best6.  ;
run;&lt;/PRE&gt;
&lt;P&gt;Output&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RichardADeVenezia_0-1589605079046.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39501i5D726F296B02C7A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RichardADeVenezia_0-1589605079046.png" alt="RichardADeVenezia_0-1589605079046.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TRANSPOSE:&lt;/P&gt;
&lt;P&gt;The issue of transposing descriptions in 'chunks' of 3 (those MIN,P50,MAX) requires a double transpose approach to reach a final reshape that can be REPORTed.&amp;nbsp; The INDEX= data set option used in the first transpose output avoids a sort that would otherwise be needed for the second transpose.&lt;/P&gt;
&lt;PRE&gt;proc transpose data=have out=stage1(rename=(_name_=varname) index=(varname));
  by group;
  var a b;
  id desc;
  label varname=' ';
run;
proc transpose data=stage1 out=reshaped(rename=_name_=desc) prefix=group;
  by varname ;
  var min p50 max;
  id group;
  label desc = ' ';
run;

proc report data=reshaped;
  title1 "Double transpose + REPORT";
  title2 "TRANSPOSE: BY GROUP; VAR A B; ID DESC.  _NAME_ to VARNAME";
  title3 "TRANSPOSE: BY VARNAME; VAR MIN P50 MAX; ID GROUP.  _NAME_ to DESC";
  define varname / ' ' order order=data;
  define desc / ' ';
run;&lt;/PRE&gt;
&lt;P&gt;Output&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RichardADeVenezia_1-1589605193799.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39502iCC63A842D6249199/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RichardADeVenezia_1-1589605193799.png" alt="RichardADeVenezia_1-1589605193799.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Log showing index use&lt;/P&gt;
&lt;PRE&gt;1140
1141  proc transpose data=have out=stage1(rename=(_name_=varname) index=(varname));
1142    by group;
1143    var a b;
1144    id desc;
1145    label varname=' ';
WARNING: Variable VARNAME not found in data set WORK.HAVE.                         &amp;lt;---------- Not a problem and expected.  Clears the _NAME_ label
1146  run;

NOTE: There were 9 observations read from the data set WORK.HAVE.
NOTE: The data set WORK.STAGE1 has 6 observations and 5 variables.
NOTE: PROCEDURE TRANSPOSE used (Total process time):
      real time           0.11 seconds
      cpu time            0.00 seconds


1147  proc transpose data=stage1 out=reshaped(rename=_name_=desc) prefix=group;
1148    by varname ;
&lt;STRONG&gt;NOTE: An index was selected to execute the BY statement.                                         &lt;/STRONG&gt;&amp;lt;----------- Index usage means a SORT step was not needed
      The observations will be returned in index order rather than in physical order.  The
      selected index is for the variable(s):
 varname
1149    var min p50 max;
1150    id group;
1151    label desc = ' ';
WARNING: Variable DESC not found in data set WORK.STAGE1.            &amp;lt;---------- Not a problem and expected. Clears the _NAME_ label
1152  run;

NOTE: There were 6 observations read from the data set WORK.STAGE1.
NOTE: The data set WORK.RESHAPED has 6 observations and 5 variables.
NOTE: PROCEDURE TRANSPOSE used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 May 2020 15:05:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648240#M194141</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2020-05-16T15:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648247#M194146</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/132289"&gt;@Cruise&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is another approach using proc report. The use of a format enables to display 'Group1', 'Group2', ... instead of 1, 2, ... without computing another variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc transpose data=have out=have_tr;
	var A B;
	by Group Desc notsorted;
run;

proc format;
	picture Group low-high = '9' (prefix='GROUP');
run;
	
proc report data=have_tr;
	columns _name_ desc group, col1;
	define _name_ / group '';
	define desc / group order=data '';
	define group / across '' f=Group.;
	define col1 / analysis '';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-16 à 09.13.55.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39503iDB96FFC1CA0F8399/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture d’écran 2020-05-16 à 09.13.55.png" alt="Capture d’écran 2020-05-16 à 09.13.55.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 07:14:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648247#M194146</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-16T07:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648251#M194149</link>
      <description>&lt;P&gt;Here is the same approach using proc tabulate:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc transpose data=have out=have_tr;
	var A B;
	by Group Desc notsorted;
run;

proc format;
	picture Group low-high = '9' (prefix='GROUP');
run;

proc tabulate data=have_tr;
	class _name_ desc group / order=data;
	var col1;
	table _name_=''*desc='', group=''*col1=''*sum=''*f=8.0;
	format group group.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-16 à 09.21.38.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39504i79938F78C24E07EC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture d’écran 2020-05-16 à 09.21.38.png" alt="Capture d’écran 2020-05-16 à 09.21.38.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best, &lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 07:22:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648251#M194149</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-16T07:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648269#M194156</link>
      <description>&lt;PRE&gt;DATA HAVE;
INPUT GROUP	Desc $ A B;
CARDS;
1	Min	1	4
1	P50	2	5
1	Max	3	6
2	Min	3	7
2	P50	4	2
2	Max	5	3
3	Min	7	5
3	P50	6	4
3	Max	8	6
;
proc sql noprint;
select distinct catt('have(where=(group=',group,') rename=(A=group',group,'))')
       into : merge1 separated by ' '
 from have;

select distinct catt('have(where=(group=',group,') rename=(B=group',group,'))')
       into : merge2  separated by ' '
 from have;
quit;

data temp1;
 var='A';
 merge &amp;amp;merge1 ;
 drop group b;
run;

data temp2;
 var='B';
 merge &amp;amp;merge2 ;
 drop group a;
run;

data want;
 set temp1 temp2;
run;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 May 2020 11:15:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648269#M194156</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-05-16T11:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648271#M194157</link>
      <description>&lt;P&gt;Combine&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sas-author-username"&gt;&lt;A class="trigger-hovercard" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12477" target="_blank"&gt;RichardADeVenezia&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class="sas-author-username"&gt;and&lt;/DIV&gt;
&lt;DIV class="sas-author-username"&gt;ed_sas_member&lt;/DIV&gt;
&lt;DIV class="sas-author-username"&gt;code as&lt;/DIV&gt;
&lt;DIV class="sas-author-username"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sas-author-username"&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
	picture Group low-high = '9' (prefix='GROUP');
run;
proc tabulate data=have;
  class group;
  class desc / order=data;
  var a b;
  table 
    (a b) * desc=''
  , group=' ' * sum='' * f=best6.  ;
  format group group.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sat, 16 May 2020 11:41:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648271#M194157</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-05-16T11:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648275#M194158</link>
      <description>&lt;P&gt;Thanks all:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now I'm trying to label the variables now. But as I've shown below my attempt to label a to Education is not taken up. Any suggestion on this?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;Label a='Education'&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
	picture Group low-high = '9' (prefix='GROUP');
run;
proc tabulate data=have;
  class group;
  class desc / order=data;
  var a b;
  table 
    (a b) * desc=''
  , group=' ' * sum='' * f=best6.  ;
  Label a='Education';
  format group group.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 May 2020 13:11:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648275#M194158</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2020-05-16T13:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648278#M194159</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/132289"&gt;@Cruise&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With the statement&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Label a='Education'; &lt;/FONT&gt;, we get the following output.&amp;nbsp;What would the expected output look like?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-16 à 15.48.26.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39514i1A60218EC657E465/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture d’écran 2020-05-16 à 15.48.26.png" alt="Capture d’écran 2020-05-16 à 15.48.26.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 13:49:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648278#M194159</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-16T13:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648281#M194160</link>
      <description>In the table, I’d like to see A labeled to Education, B labeled to Economy. And I have 22 variables in my actual dataset to label. Sorry, I’m limited to phone right now.&lt;BR /&gt;</description>
      <pubDate>Sat, 16 May 2020 14:16:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648281#M194160</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2020-05-16T14:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648301#M194166</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292097"&gt;@ed_sas_member&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Weird. The labels specified are not taken up. Maybe something specific to my data set? I attached my real data with two variables out of 20 more variables. Can you try the code using the data 'have' at your end I attached to this post?&amp;nbsp; Please let me know if this works for you.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
	picture Group low-high = '9' (prefix='GROUP');
run;
proc tabulate data=have;
  class group;
  class desc / order=data;
  var HIGH_SCH_P OB_MEAS_RATE;
table (HIGH_SCH_P OB_MEAS_RATE)*desc=''
 ,group=' ' * sum='' * f=best5.  ;
label HIGH_SCH_P='Education'; 
label OB_MEAS_RATE='Obesity'; 
  format group group.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 May 2020 15:04:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648301#M194166</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2020-05-16T15:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648306#M194168</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/132289"&gt;@Cruise&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is very weird.&lt;/P&gt;
&lt;P&gt;Here is what I get:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-16 à 17.15.51.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39523iF85A4C934E7C1F96/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture d’écran 2020-05-16 à 17.15.51.png" alt="Capture d’écran 2020-05-16 à 17.15.51.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you check in&amp;nbsp;your options if the label option is not disabled ?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;option label;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 May 2020 15:16:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648306#M194168</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-16T15:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648316#M194172</link>
      <description>Exactly! that was the case. Thanks, now it works.</description>
      <pubDate>Sat, 16 May 2020 16:31:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648316#M194172</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2020-05-16T16:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Re-organize table using proc tabulate or report or transpose?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648317#M194173</link>
      <description>&lt;P&gt;Great&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 16:32:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Re-organize-table-using-proc-tabulate-or-report-or-transpose/m-p/648317#M194173</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-16T16:32:45Z</dc:date>
    </item>
  </channel>
</rss>

