<?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: Total Lable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Total-Lable/m-p/803743#M316484</link>
    <description>&lt;P&gt;The PRINT procedure needs a place where it can put the summary labels. For this it needs a column for which no summing is done (meaning a character column). Since your dataset contains only numeric variables (and you sum them all), the procedure can't print the label.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Mar 2022 06:52:47 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2022-03-24T06:52:47Z</dc:date>
    <item>
      <title>Total Lable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Total-Lable/m-p/803741#M316482</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sales;
input jan feb mar ;
datalines;
1 1 1
2 2 2
3 3 3
5 6 7
;
run;






proc print data=sales noobs  grandtotal_label='Monthly_Sum' ;
var jan feb mar ;


sum jan feb mar  ;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;i want label total sum&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class="table lia-align-left" style="height: 500px; width: 230px;" aria-label="Data Set WORK.SALES"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r header" scope="col"&gt;an&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;feb&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;mar&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;3&lt;/TD&gt;
&lt;TD class="r data"&gt;3&lt;/TD&gt;
&lt;TD class="r data"&gt;3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;6&lt;/TD&gt;
&lt;TD class="r data"&gt;7&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r header" scope="col"&gt;11&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;12&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;13&lt;/TH&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 06:41:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Total-Lable/m-p/803741#M316482</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-03-24T06:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Total Lable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Total-Lable/m-p/803743#M316484</link>
      <description>&lt;P&gt;The PRINT procedure needs a place where it can put the summary labels. For this it needs a column for which no summing is done (meaning a character column). Since your dataset contains only numeric variables (and you sum them all), the procedure can't print the label.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 06:52:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Total-Lable/m-p/803743#M316484</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-03-24T06:52:47Z</dc:date>
    </item>
  </channel>
</rss>

