<?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 Issue with labels in Proc Tabulate in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-labels-in-Proc-Tabulate/m-p/760410#M240454</link>
    <description>&lt;PRE&gt;proc tabulate data= vendor_grp;
title 'Vendor Summary';
class Month_sort;
var tot_cnt /*list numerica variables to be analyzed*/
	cancelled	
	_dec_eom_cnt
	inb_outb_aft_cnt
;
Table Month_sort ='' all={label='Grand Total' S=[background = lightblue cellwidth=80]} 
*[STYLE=[Font_Weight=BOLD]],
tot_cnt*(sum*f=comma15. ) /*compute the variables here*/
cancelled*(sum*f=comma15. pctsum&amp;lt;tot_cnt&amp;gt;)
_dec_eom_cnt*(sum*f=comma15. pctsum&amp;lt;tot_cnt&amp;gt;)
inb_outb_aft_cnt*(sum*f=comma15. pctsum&amp;lt;tot_cnt&amp;gt;);
label Month_sort = 'FP Payment Date' 
label tot_cnt = 'Sent to NCCI for Doorknock(142)'
label cancelled = 'Cancelled Next Day ',
label ext_wait_def = 'Extended Waiting on Deferral',
label _dec_eom_cnt = 'Decision By EOM',
label inb_outb_aft_cnt = 'RPC IB/OB CONTACT AFTER DOOR KNOCK',
label tot_cnt = 'Sent to NCCI for Doorknock(142)';
/ Box='FP Payment Date';
run;&lt;/PRE&gt;
&lt;P&gt;For some reason only&amp;nbsp;label Month_sort = 'FP Payment Date' works properly (the word label is in blue).&amp;nbsp; The remaining label entries do not turn blue.&amp;nbsp; Also I want to include /Box&amp;nbsp; &amp;nbsp;to define the FP Payment Date.&amp;nbsp; Why are the remaining label entries not turning blue as well as the "box" not turning blue??&lt;/P&gt;</description>
    <pubDate>Mon, 09 Aug 2021 16:20:59 GMT</pubDate>
    <dc:creator>Q1983</dc:creator>
    <dc:date>2021-08-09T16:20:59Z</dc:date>
    <item>
      <title>Issue with labels in Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-labels-in-Proc-Tabulate/m-p/760410#M240454</link>
      <description>&lt;PRE&gt;proc tabulate data= vendor_grp;
title 'Vendor Summary';
class Month_sort;
var tot_cnt /*list numerica variables to be analyzed*/
	cancelled	
	_dec_eom_cnt
	inb_outb_aft_cnt
;
Table Month_sort ='' all={label='Grand Total' S=[background = lightblue cellwidth=80]} 
*[STYLE=[Font_Weight=BOLD]],
tot_cnt*(sum*f=comma15. ) /*compute the variables here*/
cancelled*(sum*f=comma15. pctsum&amp;lt;tot_cnt&amp;gt;)
_dec_eom_cnt*(sum*f=comma15. pctsum&amp;lt;tot_cnt&amp;gt;)
inb_outb_aft_cnt*(sum*f=comma15. pctsum&amp;lt;tot_cnt&amp;gt;);
label Month_sort = 'FP Payment Date' 
label tot_cnt = 'Sent to NCCI for Doorknock(142)'
label cancelled = 'Cancelled Next Day ',
label ext_wait_def = 'Extended Waiting on Deferral',
label _dec_eom_cnt = 'Decision By EOM',
label inb_outb_aft_cnt = 'RPC IB/OB CONTACT AFTER DOOR KNOCK',
label tot_cnt = 'Sent to NCCI for Doorknock(142)';
/ Box='FP Payment Date';
run;&lt;/PRE&gt;
&lt;P&gt;For some reason only&amp;nbsp;label Month_sort = 'FP Payment Date' works properly (the word label is in blue).&amp;nbsp; The remaining label entries do not turn blue.&amp;nbsp; Also I want to include /Box&amp;nbsp; &amp;nbsp;to define the FP Payment Date.&amp;nbsp; Why are the remaining label entries not turning blue as well as the "box" not turning blue??&lt;/P&gt;</description>
      <pubDate>Mon, 09 Aug 2021 16:20:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-labels-in-Proc-Tabulate/m-p/760410#M240454</guid>
      <dc:creator>Q1983</dc:creator>
      <dc:date>2021-08-09T16:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with labels in Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-labels-in-Proc-Tabulate/m-p/760413#M240457</link>
      <description>I think you applied it to the specific label, not the full header column as you seem to intend to do. &lt;BR /&gt;</description>
      <pubDate>Mon, 09 Aug 2021 16:27:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-labels-in-Proc-Tabulate/m-p/760413#M240457</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-08-09T16:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with labels in Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-labels-in-Proc-Tabulate/m-p/760419#M240461</link>
      <description>&lt;P&gt;The label statement has two basic forms:&lt;/P&gt;
&lt;P&gt;single variable and label text, as in&lt;/P&gt;
&lt;P&gt;Label variablename='some text';&lt;/P&gt;
&lt;P&gt;or a single Label followed my multiple variable="text" pairs. They are not comma separated lists&lt;/P&gt;
&lt;P&gt;Yours does not follow either of those and I expect that you log shows some interesting notes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead of&lt;/P&gt;
&lt;PRE&gt;label Month_sort = 'FP Payment Date' 
label tot_cnt = 'Sent to NCCI for Doorknock(142)'
label cancelled = 'Cancelled Next Day ',
label ext_wait_def = 'Extended Waiting on Deferral',
label _dec_eom_cnt = 'Decision By EOM',
label inb_outb_aft_cnt = 'RPC IB/OB CONTACT AFTER DOOR KNOCK',
label tot_cnt = 'Sent to NCCI for Doorknock(142)';
&lt;/PRE&gt;
&lt;P&gt;Try&lt;/P&gt;
&lt;PRE&gt;label Month_sort = 'FP Payment Date' 
      tot_cnt = 'Sent to NCCI for Doorknock(142)'
      cancelled = 'Cancelled Next Day '
      ext_wait_def = 'Extended Waiting on Deferral'
     _dec_eom_cnt = 'Decision By EOM'
     inb_outb_aft_cnt = 'RPC IB/OB CONTACT AFTER DOOR KNOCK'
     tot_cnt = 'Sent to NCCI for Doorknock(142)'&lt;BR /&gt;;
/ Box='FP Payment Date';&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;The editor was not showing the word "label" in blue because it was not in a valid position in the syntax so was not recognized as the key word label.&amp;nbsp; &lt;/P&gt;</description>
      <pubDate>Mon, 09 Aug 2021 16:45:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-labels-in-Proc-Tabulate/m-p/760419#M240461</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-08-09T16:45:16Z</dc:date>
    </item>
  </channel>
</rss>

