<?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 tabulate shown with all formats??? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416270#M19914</link>
    <description>&lt;P&gt;Thank you so much!!! LOL&lt;/P&gt;</description>
    <pubDate>Mon, 27 Nov 2017 08:15:18 GMT</pubDate>
    <dc:creator>EC189QRW</dc:creator>
    <dc:date>2017-11-27T08:15:18Z</dc:date>
    <item>
      <title>Proc tabulate shown with all formats???</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416259#M19910</link>
      <description>&lt;P&gt;Here is the sample data and proc tabulate process, the results show as follows table A1. I need all those formats in proc format to be shown in final table as table A2. Is anyone know how to do it? I need some help. Thanks a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data race;&lt;BR /&gt;input race ;&lt;BR /&gt;cards;&lt;BR /&gt;1&lt;BR /&gt;1&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;2&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;3&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;4&lt;BR /&gt;4&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc format;&lt;BR /&gt;value race 0 = '00 race0'&lt;BR /&gt;1 = '01 race1'&lt;BR /&gt;2 = '02 race2'&lt;BR /&gt;3 = '03 race3'&lt;BR /&gt;4 = '04 race4'&lt;BR /&gt;5 = '05 race5';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc tabulate data=race order=formatted;&lt;BR /&gt;class race;&lt;BR /&gt;format race race.;&lt;BR /&gt;table race,n;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;table A1&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;race&lt;/TD&gt;&lt;TD&gt;N&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01 race1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02 race2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03 race3&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04 race4&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;table A2&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;race&lt;/TD&gt;&lt;TD&gt;N&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;00 race0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01 race1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02 race2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03 race3&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04 race4&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;05 race5&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 27 Nov 2017 06:05:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416259#M19910</guid>
      <dc:creator>EC189QRW</dc:creator>
      <dc:date>2017-11-27T06:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate shown with all formats???</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416263#M19911</link>
      <description>&lt;P&gt;Use options missing = 0, and the preloadfmt and printmiss options:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options missing = 0;

proc tabulate data=race order=formatted;
class race / preloadfmt;
format race race.;
table race,n / printmiss;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Nov 2017 07:31:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416263#M19911</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-27T07:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate shown with all formats???</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416270#M19914</link>
      <description>&lt;P&gt;Thank you so much!!! LOL&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 08:15:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416270#M19914</guid>
      <dc:creator>EC189QRW</dc:creator>
      <dc:date>2017-11-27T08:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate shown with all formats???</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416274#M19915</link>
      <description>&lt;P&gt;Mind that I'm not a proc tabulate maven, but just followed Maxim #1.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 08:46:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416274#M19915</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-27T08:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate shown with all formats???</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416950#M19920</link>
      <description>&lt;P&gt;Thanks Kurt, I just read Maxim 1- 48 three times. It helps a lot. I think i really need pay much more attention on the documentations. Here is another question,&amp;nbsp;If you find a problem how do you locate&amp;nbsp;the keywords in documents? Ctrl+F?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 04:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416950#M19920</guid>
      <dc:creator>EC189QRW</dc:creator>
      <dc:date>2017-11-29T04:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate shown with all formats???</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416962#M19921</link>
      <description>&lt;P&gt;Yes. But it's always good to study the whole page when you're already there. You might find other helpful options that make your work easier.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 05:37:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-tabulate-shown-with-all-formats/m-p/416962#M19921</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-29T05:37:30Z</dc:date>
    </item>
  </channel>
</rss>

