<?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: completetypes+preloadfmt vs completetypes? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83678#M24031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One use, also preloadfmt works in some procedures such as Tabulate that do not have completetypes (actually no types). Completetypes only works in proc means or summary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Sep 2013 20:00:12 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2013-09-16T20:00:12Z</dc:date>
    <item>
      <title>completetypes+preloadfmt vs completetypes?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83674#M24027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;These 2 codes below give me the same results.&lt;/P&gt;&lt;P&gt;What actually is preloadfmt here spposed to do?&lt;/P&gt;&lt;P&gt;What difference is supposed to make?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc summary data=mylib.testo&amp;nbsp; completetypes chartype ;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;class sex/preloadfmt ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;var height weight;&lt;/P&gt;&lt;P&gt;output out=new max=/autoname;&lt;/P&gt;&lt;P&gt;format sex $gender.;proc print;run;&lt;/P&gt;&lt;P&gt; proc format ;&lt;/P&gt;&lt;P&gt;value $gender 'F'='Female'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'M'='Male'; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc summary data=mylib.testo&amp;nbsp; completetypes chartype ;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;class sex ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;var height weight;&lt;/P&gt;&lt;P&gt;output out=new max=/autoname;&lt;/P&gt;&lt;P&gt;format sex $gender.;proc print;run;&lt;/P&gt;&lt;P&gt; proc format ;&lt;/P&gt;&lt;P&gt;value $gender 'F'='Female'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'M'='Male';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 17:19:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83674#M24027</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-09-16T17:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: completetypes+preloadfmt vs completetypes?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83675#M24028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to create the format before you use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRELOADFMT allows you to use the format to create something from nothing.&amp;nbsp;&amp;nbsp; As a test add a level to the 'X'='OTHER' and see what happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 17:24:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83675#M24028</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-09-16T17:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: completetypes+preloadfmt vs completetypes?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83676#M24029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry,what you mean by create the format before you use it?&lt;/P&gt;&lt;P&gt;I already had a&amp;nbsp; format below my code.&lt;/P&gt;&lt;P&gt;So yes, with preloadfmt "other" appears in my result eventhough 'X' is nowhere in my inputted data but then why worry about "x" or anyhting that is not in my&amp;nbsp; data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 17:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83676#M24029</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-09-16T17:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: completetypes+preloadfmt vs completetypes?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83677#M24030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh so you are saying in case we want to show a classification level in the outputs&amp;nbsp; that is not in the data then we use prleoadfmt?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 17:47:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83677#M24030</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-09-16T17:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: completetypes+preloadfmt vs completetypes?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83678#M24031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One use, also preloadfmt works in some procedures such as Tabulate that do not have completetypes (actually no types). Completetypes only works in proc means or summary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 20:00:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83678#M24031</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-09-16T20:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: completetypes+preloadfmt vs completetypes?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83679#M24032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you both&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2013 03:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/completetypes-preloadfmt-vs-completetypes/m-p/83679#M24032</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-09-17T03:31:40Z</dc:date>
    </item>
  </channel>
</rss>

