<?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 custom format not loading in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/custom-format-not-loading/m-p/249916#M47080</link>
    <description>&lt;P&gt;Hello to whomever can help&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please review the following program&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format lib=SASUSER; 
   value safdesc 0='Average or Above'
                 1='Below Average';
   value sizename 1='Small'
                  2='Medium'
                  3='Large';
   value vstfmt 0='staff only'
                1='physician';
   value spcfmt 1='oncologist'
                2='internal med'
                3='family prac'
                4='pulmonolgist'
                5='other special';
run;

data hosp;
  set sasuser.b_hosp;
  format date mmddyy8.;
  format visit vstfmt.;
  format code specfmt.;
  where code &amp;lt; 4;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;it gave me the folloiwng error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;507  data hosp;
508    set sasuser.b_hosp;
509    format date mmddyy8.;
510    format visit vstfmt.;
                    -------
                    48
ERROR 48-59: The format VSTFMT was not found or could not be loaded.

511    format code specfmt.;
                   --------
                   48
ERROR 48-59: The format SPECFMT was not found or could not be loaded.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;what am i missing here. Thank you!&lt;/P&gt;</description>
    <pubDate>Sun, 14 Feb 2016 00:51:51 GMT</pubDate>
    <dc:creator>BingL</dc:creator>
    <dc:date>2016-02-14T00:51:51Z</dc:date>
    <item>
      <title>custom format not loading</title>
      <link>https://communities.sas.com/t5/SAS-Programming/custom-format-not-loading/m-p/249916#M47080</link>
      <description>&lt;P&gt;Hello to whomever can help&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please review the following program&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format lib=SASUSER; 
   value safdesc 0='Average or Above'
                 1='Below Average';
   value sizename 1='Small'
                  2='Medium'
                  3='Large';
   value vstfmt 0='staff only'
                1='physician';
   value spcfmt 1='oncologist'
                2='internal med'
                3='family prac'
                4='pulmonolgist'
                5='other special';
run;

data hosp;
  set sasuser.b_hosp;
  format date mmddyy8.;
  format visit vstfmt.;
  format code specfmt.;
  where code &amp;lt; 4;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;it gave me the folloiwng error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;507  data hosp;
508    set sasuser.b_hosp;
509    format date mmddyy8.;
510    format visit vstfmt.;
                    -------
                    48
ERROR 48-59: The format VSTFMT was not found or could not be loaded.

511    format code specfmt.;
                   --------
                   48
ERROR 48-59: The format SPECFMT was not found or could not be loaded.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;what am i missing here. Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 14 Feb 2016 00:51:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/custom-format-not-loading/m-p/249916#M47080</guid>
      <dc:creator>BingL</dc:creator>
      <dc:date>2016-02-14T00:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: custom format not loading</title>
      <link>https://communities.sas.com/t5/SAS-Programming/custom-format-not-loading/m-p/249918#M47081</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The SASUSER library is read only in SAS University Edition, and you cannot save content to this library.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Delete the statment "lib=SASUSER;" or change it to another writable library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Feb 2016 01:21:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/custom-format-not-loading/m-p/249918#M47081</guid>
      <dc:creator>mohamed_zaki</dc:creator>
      <dc:date>2016-02-14T01:21:24Z</dc:date>
    </item>
  </channel>
</rss>

