<?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: Create Subtotal &amp;amp; Total in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/497274#M32016</link>
    <description>&lt;P&gt;That is just the default output from proc means, you can switch it off by adding noprint in as below.&amp;nbsp; The dataset created at the end of the step, contians the data need to create your report, you would then proc report that data using your style:&lt;/P&gt;
&lt;PRE&gt;proc means data=have noprint;   &amp;lt;&amp;lt;&amp;lt;&amp;lt;Replace have with your data here
  class country;
  var salary;
  output out=subtotal sum=salary;
run;

data want;
  set have (in=a) subtotal (in=b); &amp;lt;&amp;lt;&amp;lt;&amp;lt;Replace have with your data here
  if b then country=cat(strip(country)," Total");
run;

proc sort data=want;
  by country employee;
run;

ods pdf file="....pdf";

proc report...;
  ...;
run;

ods pdf close;&lt;/PRE&gt;
&lt;P&gt;Obviously replace the elipses with the necessary information, file path/name, and the proc report code.&amp;nbsp; Could be as simple as:&lt;/P&gt;
&lt;PRE&gt;proc report data=want nowd;
  columns _all_;
run;&lt;/PRE&gt;
&lt;P&gt;That will give basic output, likely you will need a computed style call though for highlighting the totals, maybe something like:&lt;/P&gt;
&lt;PRE&gt;proc report data=want nowd;
  columns _all_;&lt;BR /&gt;  &lt;BR /&gt;  compute country;&lt;BR /&gt;    if index(country,"Total") then call define(_row_,'style','style=[font_weight=bold]');&lt;BR /&gt;  endcomp;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Something like that, you will have to play with it.&amp;nbsp; There is a lot of information out there on proc report, which is a huge procedure, you may even be able to compute your subtotals directly in that procedure:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/How-to-Label-totals-and-subtotals-in-PROC-Report/td-p/430403" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/How-to-Label-totals-and-subtotals-in-PROC-Report/td-p/430403&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/proc-report-subtotal-when-using-group-noprint/td-p/124710" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/proc-report-subtotal-when-using-group-noprint/td-p/124710&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Personally though I like to get my data looking the right way first, then using a basic proc report output.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Sep 2018 08:27:30 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-09-20T08:27:30Z</dc:date>
    <item>
      <title>Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496837#M31989</link>
      <description>&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate your advice how can i create a subtotal and total in the dataset and export to Microsoft Excel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would like to create subtotal for salary by country&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached herewith the Microsoft Excel output format &amp;amp; SAS Sample Data set&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 08:32:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496837#M31989</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2018-09-19T08:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496841#M31990</link>
      <description>&lt;P&gt;Post test data in the form of a datastep:&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You would use one of the summary procedures - means, summary - and then add that back to your data, something like:&lt;/P&gt;
&lt;PRE&gt;proc means data=have;
  class country;
  var salary;
  output out=subtotal sum=salary;
run;

data want;
  set have salary;
run;&lt;/PRE&gt;
&lt;P&gt;To export to Excel there are numerous methods depending on which version of SAS or which product from SAS you are using, what operating system etc.&amp;nbsp; The question is to vague, proc export, ods tagsets.excelxp, csv output, libname excel, pcfiles etc.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 08:08:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496841#M31990</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-19T08:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496855#M31995</link>
      <description>&lt;P&gt;Hi RW9,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your advice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I would like have the outcome, something likes this&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="SAS.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23369iCE58C92B4001D14F/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS.png" alt="SAS.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 08:41:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496855#M31995</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2018-09-19T08:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496859#M31996</link>
      <description>&lt;PRE&gt;proc means data=have;
  class country;
  var salary;
  output out=subtotal sum=salary;
run;

data want;
  set have (in=a) salary (in=b);&lt;BR /&gt;  if b then country=cat(strip(country)," Total");
run;&lt;BR /&gt;&lt;BR /&gt;proc sort data=want;&lt;BR /&gt;  by country employee;&lt;BR /&gt;run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Sep 2018 08:53:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496859#M31996</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-19T08:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496873#M31997</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;34         
35         data want;
36           set WORK.SALES (in=a) salary (in=b);
ERROR: File WORK.SALARY.DATA does not exist.
37           if b then country=cat(strip(country)," Total");
38         run;

NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.WANT may be incomplete.  When this step was stopped there were 0 observations and 9 variables.
WARNING: Data set WORK.WANT was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      

39         
40         proc sort data=want;
41           by country employee;
ERROR: Variable EMPLOYEE not found.
42         run;

NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      
43         
44         %_eg_hidenotesandsource;
56         &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi i tried your code but there's an error when i run it. Anything I have missed out ?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 09:49:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496873#M31997</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2018-09-19T09:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496875#M31998</link>
      <description>&lt;P&gt;You did not include the proc means step which produces the summary.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 09:52:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496875#M31998</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-19T09:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496880#M31999</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1                                                          The SAS System                        17:05 Wednesday, September 19, 2018

1          %_eg_hidenotesandsource;
5          %_eg_hidenotesandsource;
28         


29         proc means data=WORK.SALES;
30           class country;
31           var salary;
32           output out=subtotal sum=salary;
33         run;

NOTE: There were 165 observations read from the data set WORK.SALES.
NOTE: The data set WORK.SUBTOTAL has 3 observations and 4 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.16 seconds
      cpu time            0.04 seconds
      

34         
35         data want;
36           set WORK.SALES (in=a) salary (in=b);
ERROR: File WORK.SALARY.DATA does not exist.
37           if b then country=cat(strip(country)," Total");
38         run;

NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.WANT may be incomplete.  When this step was stopped there were 0 observations and 9 variables.
WARNING: Data set WORK.WANT was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      

39         
40         proc sort data=want;
41           by country employee;
ERROR: Variable EMPLOYEE not found.
42         run;

NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      
43         
44         %_eg_hidenotesandsource;
56         
57         
58         %_eg_hidenotesandsource;
61         &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi RW9,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did, kindly refer to screenshot below.&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="sas.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23372iC49A393D8C64BB35/image-size/large?v=v2&amp;amp;px=999" role="button" title="sas.png" alt="sas.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 09:57:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496880#M31999</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2018-09-19T09:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496881#M32000</link>
      <description>&lt;PRE&gt;proc means data=have;
  class country;
  var salary;
  output out=subtotal sum=salary;
run;

data want;
  set have (in=a) subtotal (in=b);&lt;BR /&gt;  if b then country=cat(strip(country)," Total");
run;&lt;BR /&gt;&lt;BR /&gt;proc sort data=want;&lt;BR /&gt;  by country employee;&lt;BR /&gt;run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Sep 2018 09:58:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496881#M32000</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-19T09:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496882#M32001</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;                                                          The SAS System                        17:05 Wednesday, September 19, 2018

1          %_eg_hidenotesandsource;
5          %_eg_hidenotesandsource;
28         


29         proc means data=have;
ERROR: File WORK.HAVE.DATA does not exist.
30           class country;
ERROR: No data set open to look up variables.
31           var salary;
ERROR: No data set open to look up variables.
32           output out=subtotal sum=salary;
33         run;

NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.SUBTOTAL may be incomplete.  When this step was stopped there were 0 observations and 0 variables.
WARNING: Data set WORK.SUBTOTAL was not replaced because this step was stopped.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.01 seconds
      cpu time            0.03 seconds
      
34         


35         data want;
36           set have (in=a) subtotal (in=b);
ERROR: File WORK.HAVE.DATA does not exist.
37           if b then country=cat(strip(country)," Total");
38         run;

NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.WANT may be incomplete.  When this step was stopped there were 0 observations and 4 variables.
WARNING: Data set WORK.WANT was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      

39         
40         proc sort data=want;
41           by country employee;
ERROR: Variable EMPLOYEE not found.
42         run;

NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      
43         
44         %_eg_hidenotesandsource;
56         
57         
58         %_eg_hidenotesandsource;
61         &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Sorry RW9, still can't&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 09:59:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496882#M32001</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2018-09-19T09:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496884#M32002</link>
      <description>&lt;P&gt;You have not replaced the dataset in the means.&lt;/P&gt;
&lt;PRE&gt;proc means data=have;   &amp;lt;&amp;lt;&amp;lt;&amp;lt;Replace have with your data here
  class country;
  var salary;
  output out=subtotal sum=salary;
run;

data want;
  set have (in=a) subtotal (in=b); &amp;lt;&amp;lt;&amp;lt;&amp;lt;Replace have with your data here
  if b then country=cat(strip(country)," Total");
run;

proc sort data=want;
  by country employee;
run;&lt;/PRE&gt;
&lt;P&gt;Please also refer to the log which clearly tells you where the problem is:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;ERROR: &lt;SPAN class="token statement"&gt;File&lt;/SPAN&gt; WORK&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;HAVE&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token procnames"&gt;DATA&lt;/SPAN&gt; does &lt;SPAN class="token operator"&gt;not&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;exist&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Sep 2018 10:07:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/496884#M32002</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-19T10:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/497268#M32015</link>
      <description>&lt;P&gt;Hi RW9&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your advice&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the the output which produced by SAS.&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="SAS 1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23407i01854CF9E42464D4/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS 1.png" alt="SAS 1.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;However, I would like to have a data set with subtotals as shown below.&amp;nbsp; Just wonder whether possible to do it from SAS ?&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="SAS.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23408iA83DAECEB20A8AD2/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS.png" alt="SAS.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 08:01:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/497268#M32015</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2018-09-20T08:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create Subtotal &amp; Total</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/497274#M32016</link>
      <description>&lt;P&gt;That is just the default output from proc means, you can switch it off by adding noprint in as below.&amp;nbsp; The dataset created at the end of the step, contians the data need to create your report, you would then proc report that data using your style:&lt;/P&gt;
&lt;PRE&gt;proc means data=have noprint;   &amp;lt;&amp;lt;&amp;lt;&amp;lt;Replace have with your data here
  class country;
  var salary;
  output out=subtotal sum=salary;
run;

data want;
  set have (in=a) subtotal (in=b); &amp;lt;&amp;lt;&amp;lt;&amp;lt;Replace have with your data here
  if b then country=cat(strip(country)," Total");
run;

proc sort data=want;
  by country employee;
run;

ods pdf file="....pdf";

proc report...;
  ...;
run;

ods pdf close;&lt;/PRE&gt;
&lt;P&gt;Obviously replace the elipses with the necessary information, file path/name, and the proc report code.&amp;nbsp; Could be as simple as:&lt;/P&gt;
&lt;PRE&gt;proc report data=want nowd;
  columns _all_;
run;&lt;/PRE&gt;
&lt;P&gt;That will give basic output, likely you will need a computed style call though for highlighting the totals, maybe something like:&lt;/P&gt;
&lt;PRE&gt;proc report data=want nowd;
  columns _all_;&lt;BR /&gt;  &lt;BR /&gt;  compute country;&lt;BR /&gt;    if index(country,"Total") then call define(_row_,'style','style=[font_weight=bold]');&lt;BR /&gt;  endcomp;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Something like that, you will have to play with it.&amp;nbsp; There is a lot of information out there on proc report, which is a huge procedure, you may even be able to compute your subtotals directly in that procedure:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/How-to-Label-totals-and-subtotals-in-PROC-Report/td-p/430403" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/How-to-Label-totals-and-subtotals-in-PROC-Report/td-p/430403&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/proc-report-subtotal-when-using-group-noprint/td-p/124710" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/proc-report-subtotal-when-using-group-noprint/td-p/124710&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Personally though I like to get my data looking the right way first, then using a basic proc report output.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 08:27:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Subtotal-amp-Total/m-p/497274#M32016</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-20T08:27:30Z</dc:date>
    </item>
  </channel>
</rss>

