<?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: Newbie format question ??BEST. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136928#M27710</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But in Clinical field, we need to catch these information.&amp;nbsp; This might be a typo, or program flaw, we absolutely need to fix that, not just suppress the error message.&amp;nbsp; You are right, maybe in the other field, that information is not important.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jun 2014 03:12:00 GMT</pubDate>
    <dc:creator>Abdu</dc:creator>
    <dc:date>2014-06-11T03:12:00Z</dc:date>
    <item>
      <title>Newbie format question ??BEST.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136923#M27705</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;&lt;/P&gt;&lt;P&gt;I saw many program that have format ??format.&amp;nbsp; Used in input, put, ....&amp;nbsp;&amp;nbsp; I can not find any reference of why they use '??'.&amp;nbsp; Could anyone explain me a little bit or give me some references to read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much,&lt;/P&gt;&lt;P&gt;Abdu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 20:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136923#M27705</guid>
      <dc:creator>Abdu</dc:creator>
      <dc:date>2014-06-10T20:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie format question ??BEST.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136924#M27706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*(??) modifiers that suppress the printing of both the error messages and the input lines when invalid data values are read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have; &lt;BR /&gt;input EmployeeID $; &lt;BR /&gt;datalines; &lt;BR /&gt;12 &lt;BR /&gt;12 &lt;BR /&gt;ab &lt;BR /&gt;9 &lt;BR /&gt;13 &lt;BR /&gt;; &lt;BR /&gt;/* With error message */&lt;/P&gt;&lt;P&gt;data want; &lt;BR /&gt;set have; &lt;BR /&gt;eid=input(EmployeeID, 2.); &lt;BR /&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Without error message */&lt;/P&gt;&lt;P&gt;data want; &lt;BR /&gt;set have; &lt;BR /&gt;eid=input(EmployeeID, ??best.); &lt;BR /&gt;run; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 21:11:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136924#M27706</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-06-10T21:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie format question ??BEST.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136925#M27707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the doc for the &lt;A href="http://support.sas.com/documentation/cdl/en/lestmtsref/67175/HTML/default/viewer.htm#n0oaql83drile0n141pdacojq97s.htm"&gt;INPUT &lt;/A&gt;statement, search for "How Invalid Data Is Handled" it will explain about the ? and ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 21:27:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136925#M27707</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2014-06-10T21:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie format question ??BEST.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136926#M27708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But in this way, we will lost some data issue information.&amp;nbsp; That is really not a good way to use this modifier.&amp;nbsp; Any good reason to use this modifier?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 02:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136926#M27708</guid>
      <dc:creator>Abdu</dc:creator>
      <dc:date>2014-06-11T02:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie format question ??BEST.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136927#M27709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if the format does not match the data elements you are reading, you are losing them anyway, unless you change the format to some universal char. ?? is merely to suppress the error message in the log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 03:04:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136927#M27709</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-11T03:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie format question ??BEST.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136928#M27710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But in Clinical field, we need to catch these information.&amp;nbsp; This might be a typo, or program flaw, we absolutely need to fix that, not just suppress the error message.&amp;nbsp; You are right, maybe in the other field, that information is not important.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 03:12:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136928#M27710</guid>
      <dc:creator>Abdu</dc:creator>
      <dc:date>2014-06-11T03:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie format question ??BEST.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136929#M27711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are deviating the discussion from the original path that you set. You were asking what "??" do, and I think you have your answer. If you now are trying to ask how to read in certain data intact, then you probably want to show us some sample data, and for the better, to initiate a brand new discussion.&amp;nbsp; But in general like I mentioned you would need the informats for character instead of number (such as the one you put up for example "best.").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:06:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-format-question-BEST/m-p/136929#M27711</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-11T12:06:38Z</dc:date>
    </item>
  </channel>
</rss>

