<?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: Add total Row using Proc Report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839964#M332108</link>
    <description>&lt;BR /&gt;PROC REPORT DATA  =  have;&lt;BR /&gt; columns binary COUNT PERCENT  ;&lt;BR /&gt;   define binary/ display ;&lt;BR /&gt;   define COUNT/ analysis sum;&lt;BR /&gt;   define PERCENT/ analysis sum;&lt;BR /&gt;    rbreak after  /summarize ; &lt;BR /&gt;	compute after;&lt;BR /&gt;	binary = 'Total';&lt;BR /&gt; endcomp;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;does not print the word "Total" , it displays it as missing.&lt;BR /&gt;Thank you.</description>
    <pubDate>Fri, 21 Oct 2022 15:59:37 GMT</pubDate>
    <dc:creator>sascode</dc:creator>
    <dc:date>2022-10-21T15:59:37Z</dc:date>
    <item>
      <title>Add total Row using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839956#M332102</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I have dataset as follows:&lt;BR /&gt;data have;&lt;BR /&gt;input binary Count Percent ;&lt;BR /&gt;datelines;&lt;BR /&gt;0 70 70&lt;BR /&gt;1 30 30&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to add a total row using proc report&amp;nbsp; and to display as follows :&lt;BR /&gt;binary Count Percent&lt;/P&gt;
&lt;P&gt;0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;70&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;70&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;30&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;30&lt;/P&gt;
&lt;P&gt;Total&amp;nbsp; &amp;nbsp; &amp;nbsp;100&amp;nbsp; &amp;nbsp; &amp;nbsp;100&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 15:34:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839956#M332102</guid>
      <dc:creator>sascode</dc:creator>
      <dc:date>2022-10-21T15:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add total Row using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839959#M332105</link>
      <description>&lt;P&gt;Use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;rbreak after &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;as shown in this example:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/proc/p1ai2km76blvcvn12ye0q6i3187a.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/proc/p1ai2km76blvcvn12ye0q6i3187a.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 15:42:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839959#M332105</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-10-21T15:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Add total Row using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839964#M332108</link>
      <description>&lt;BR /&gt;PROC REPORT DATA  =  have;&lt;BR /&gt; columns binary COUNT PERCENT  ;&lt;BR /&gt;   define binary/ display ;&lt;BR /&gt;   define COUNT/ analysis sum;&lt;BR /&gt;   define PERCENT/ analysis sum;&lt;BR /&gt;    rbreak after  /summarize ; &lt;BR /&gt;	compute after;&lt;BR /&gt;	binary = 'Total';&lt;BR /&gt; endcomp;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;does not print the word "Total" , it displays it as missing.&lt;BR /&gt;Thank you.</description>
      <pubDate>Fri, 21 Oct 2022 15:59:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839964#M332108</guid>
      <dc:creator>sascode</dc:creator>
      <dc:date>2022-10-21T15:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Add total Row using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839966#M332110</link>
      <description>&lt;P&gt;Please follow this example from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431526#M106760" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431526#M106760&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 16:01:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-total-Row-using-Proc-Report/m-p/839966#M332110</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-10-21T16:01:53Z</dc:date>
    </item>
  </channel>
</rss>

