<?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: PROC FREQ or PROC TABULATE for complex table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393540#M94786</link>
    <description>&lt;P&gt;I have received the following table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but badly need exactly the one below (.&amp;nbsp;Is it possible to use Proc Report and what is the algorythm for it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Mar 2018 11:00:46 GMT</pubDate>
    <dc:creator>DmytroYermak</dc:creator>
    <dc:date>2018-03-05T11:00:46Z</dc:date>
    <item>
      <title>PROC FREQ or PROC TABULATE for complex table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393506#M94774</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please say how to implement Proc Freq for the following case. I have the table below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I need to build the following statistics (frequencies):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What&amp;nbsp;shoult be the format of PROC FREQ? Or should it be PROC TABULATE? I am looking for a decision in several steps but can it be sorted out in one?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 07:07:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393506#M94774</guid>
      <dc:creator>DmytroYermak</dc:creator>
      <dc:date>2018-03-06T07:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: PROC FREQ or PROC TABULATE for complex table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393511#M94777</link>
      <description>&lt;P&gt;How does Visit2Finding get utilized in constructing the table?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC FREQ can give you something quick and dirty, not at all fancy and only similar to what you asked for:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq data=have;&lt;/P&gt;
&lt;P&gt;tables examination * visit1Finding * cohort / missing list;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might add Visit2Finding in there somewhere, depending on what it is supposed to be used for.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For anything fancier, you probably need to switch to PROC TABULATE.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2017 11:33:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393511#M94777</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-09-06T11:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: PROC FREQ or PROC TABULATE for complex table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393540#M94786</link>
      <description>&lt;P&gt;I have received the following table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but badly need exactly the one below (.&amp;nbsp;Is it possible to use Proc Report and what is the algorythm for it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 11:00:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393540#M94786</guid>
      <dc:creator>DmytroYermak</dc:creator>
      <dc:date>2018-03-05T11:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: PROC FREQ or PROC TABULATE for complex table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393582#M94811</link>
      <description>&lt;P&gt;It is best to post example data in a form that can be used for demonstrating code. Instructions here: &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; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the {i} icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2017 14:42:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-FREQ-or-PROC-TABULATE-for-complex-table/m-p/393582#M94811</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-09-06T14:42:17Z</dc:date>
    </item>
  </channel>
</rss>

