<?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 Difference between messages in log about wrong format in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744916#M233434</link>
    <description>&lt;P&gt;Can someone explain what is the difference between these two messages in SAS log?&lt;/P&gt;&lt;P&gt;ERROR 48-59: The format XXX was not found or could not be loaded.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NOTE 484-185&lt;/EM&gt;&lt;SPAN&gt;: Format XXX was not found or could not be loaded.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Jun 2021 12:43:34 GMT</pubDate>
    <dc:creator>Pavlo11</dc:creator>
    <dc:date>2021-06-01T12:43:34Z</dc:date>
    <item>
      <title>Difference between messages in log about wrong format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744916#M233434</link>
      <description>&lt;P&gt;Can someone explain what is the difference between these two messages in SAS log?&lt;/P&gt;&lt;P&gt;ERROR 48-59: The format XXX was not found or could not be loaded.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NOTE 484-185&lt;/EM&gt;&lt;SPAN&gt;: Format XXX was not found or could not be loaded.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 12:43:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744916#M233434</guid>
      <dc:creator>Pavlo11</dc:creator>
      <dc:date>2021-06-01T12:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between messages in log about wrong format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744918#M233436</link>
      <description>&lt;P&gt;You have given us no context. We need to see the log that contains these messages (including the code as it appears in the log, plus all ERRORs, WARNINGs and NOTEs)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 13:00:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744918#M233436</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-06-01T13:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between messages in log about wrong format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744919#M233437</link>
      <description>&lt;P&gt;The first one is fatal, so the code can't run. The second one is a notification that the code will not work&amp;nbsp;&lt;EM&gt;as expected&lt;/EM&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 12:53:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744919#M233437</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-01T12:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between messages in log about wrong format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744922#M233439</link>
      <description>If you didn't specify &lt;BR /&gt;option nofmterr;&lt;BR /&gt;&lt;BR /&gt;you will get &lt;BR /&gt;ERROR 48-59: The format XXX was not found or could not be loaded.&lt;BR /&gt;&lt;BR /&gt;otherwise, you will get&lt;BR /&gt;NOTE 484-185: Format XXX was not found or could not be loaded.</description>
      <pubDate>Tue, 01 Jun 2021 13:06:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744922#M233439</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-06-01T13:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between messages in log about wrong format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744923#M233440</link>
      <description>&lt;P&gt;That reflects a different setting for the FMTERR system option.&lt;/P&gt;
&lt;PRE&gt;208   options fmterr;
209   data x;
210    format x nosuch.;
                -------
                48
ERROR 48-59: The format NOSUCH was not found or could not be loaded.

211   run;

NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.X may be incomplete.  When this step was stopped there were 0 observations and 1 variables.
NOTE: DATA statement used (Total process time):
      real time           0.17 seconds
      cpu time            0.01 seconds


212   options nofmterr;
213   data x;
214    format x nosuch.;
                -------
                484
NOTE 484-185: Format NOSUCH was not found or could not be loaded.

215   run;

NOTE: Variable x is uninitialized.
NOTE: The data set WORK.X has 1 observations and 1 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Jun 2021 13:08:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-between-messages-in-log-about-wrong-format/m-p/744923#M233440</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-06-01T13:08:20Z</dc:date>
    </item>
  </channel>
</rss>

