<?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: Tabulate, Compound Box = ? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150401#M11602</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Product has values like Auto, HELOC, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally, for this table, my box or title would say&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Auto by Vintage&lt;/P&gt;&lt;P&gt;HELOC by Vintage&lt;/P&gt;&lt;P&gt;Mortgage by Vintage&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jan 2014 16:19:48 GMT</pubDate>
    <dc:creator>wcpatton</dc:creator>
    <dc:date>2014-01-23T16:19:48Z</dc:date>
    <item>
      <title>Tabulate, Compound Box = ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150397#M11598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyway to get my box= to display the _page_ value, followed by something?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I.e.&lt;/P&gt;&lt;P&gt;_page_ &amp;amp; "by State"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 14:11:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150397#M11598</guid>
      <dc:creator>wcpatton</dc:creator>
      <dc:date>2014-01-23T14:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate, Compound Box = ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150398#M11599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Responding to clarify:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if my table had two class values (state, product), I want to end up with the box (or title, I suppose) saying [product] by State.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:57:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150398#M11599</guid>
      <dc:creator>wcpatton</dc:creator>
      <dc:date>2014-01-23T15:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate, Compound Box = ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150399#M11600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What does your proc tabulate code look like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 16:17:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150399#M11600</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-01-23T16:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate, Compound Box = ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150400#M11601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;options missing="0";&lt;/P&gt;&lt;P&gt;title;&lt;/P&gt;&lt;P&gt;ods html file= &lt;/P&gt;&lt;P&gt;"I:\RSD\Reports\CROSSPRODUCT\Portfolio RSR\Output\test.xls"&lt;/P&gt;&lt;P&gt;STYLE=nobreak;&lt;/P&gt;&lt;P&gt;options nomlogic nomprint;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc tabulate data=rsr_combine missing;&lt;/P&gt;&lt;P&gt;class vintage product;&lt;/P&gt;&lt;P&gt;var ytd_nco balance delqbal annl_nco;&lt;/P&gt;&lt;P&gt;&amp;nbsp; tables&amp;nbsp; (all='Total Credit' product=''), (vintage='' all),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ytd_nco&amp;nbsp; = "YTD Net Charge-off" *sum="" * f=dollar18.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ytd_nco&amp;nbsp; = "% of Total Net C/O" * reppctsum = "" * f=pctfmt16.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ytd_nco&amp;nbsp; = "% of Product Net C/O" * pctsum&amp;lt;vintage all&amp;gt; = "" * f=pctfmt16.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; annl_nco = "% Annualized C/O Rate" * pctsum&amp;lt;balance&amp;gt; = "" * f=pctfmt16.3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; balance&amp;nbsp; = "Outstanding Balance" *sum="" * f=dollar18.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; balance&amp;nbsp; = "% of Total O/S" * reppctsum = "" * f=pctfmt24.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; balance&amp;nbsp; = "% of Product O/S" * pctsum&amp;lt;vintage all&amp;gt; = "" * f=pctfmt16.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; delqbal = "Delq Bal" *sum="" * f=dollar18.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; delqbal&amp;nbsp; = "% of Total Delq" * reppctsum = "" * f=pctfmt24.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; delqbal&amp;nbsp; = "% of Product Delq" * pctsum&amp;lt;vintage all&amp;gt; = "" * f=pctfmt16.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; delqbal = "Delq Rate as of &amp;amp;month &amp;amp;yyyy" * pctsum&amp;lt;balance&amp;gt; = "" * f=pctfmt36.4/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; box=???;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; title ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format vintage vint.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 16:19:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150400#M11601</guid>
      <dc:creator>wcpatton</dc:creator>
      <dc:date>2014-01-23T16:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate, Compound Box = ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150401#M11602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Product has values like Auto, HELOC, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally, for this table, my box or title would say&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Auto by Vintage&lt;/P&gt;&lt;P&gt;HELOC by Vintage&lt;/P&gt;&lt;P&gt;Mortgage by Vintage&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 16:19:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150401#M11602</guid>
      <dc:creator>wcpatton</dc:creator>
      <dc:date>2014-01-23T16:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate, Compound Box = ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150402#M11603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was hoping the #byval would work but it doesn't seem to &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://communities.sas.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;&lt;P&gt;Or I did something wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sort data=sashelp.shoes out=shoes;&lt;/P&gt;&lt;P&gt;by region;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc tabulate data=shoes;&lt;/P&gt;&lt;P&gt;by region;&lt;/P&gt;&lt;P&gt;class product subsidiary;&lt;/P&gt;&lt;P&gt;var sales inventory;&lt;/P&gt;&lt;P&gt;table product*subsidiary, sales='Sales $'*sum=''*f=dollar12. inventory="Inventory $"*sum=""*f=dollar12./box='#byval(region)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 17:22:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150402#M11603</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-01-23T17:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate, Compound Box = ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150403#M11604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;#byval works in a title statement, but not in box=&amp;nbsp;&amp;nbsp; :smileyangry:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 17:24:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Tabulate-Compound-Box/m-p/150403#M11604</guid>
      <dc:creator>wcpatton</dc:creator>
      <dc:date>2014-01-23T17:24:27Z</dc:date>
    </item>
  </channel>
</rss>

