<?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: Please help me to figure out what is wrong with my Excel file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97444#M20560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Reeza! Is there a way to get rid of the '? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Feb 2013 21:00:48 GMT</pubDate>
    <dc:creator>Linlin</dc:creator>
    <dc:date>2013-02-04T21:00:48Z</dc:date>
    <item>
      <title>Please help me to figure out what is wrong with my Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97442#M20558</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;The attached excel file has one date column. The last three rows (with date=11/26/2012) produce missing value after reading into sas (I use libname). I can't figure out why. Any help is highly appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 20:42:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97442#M20558</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-02-04T20:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to figure out what is wrong with my Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97443#M20559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAS is reading them in as numbers, or trying to at least. But if you look at the formula bar in excel they have a apostrophe (') before the date (probably because excel was trying to divide the numbers). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can get rid of it by formatting the cells as text and then removing the apostrophe's and re-importing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 20:50:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97443#M20559</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-02-04T20:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to figure out what is wrong with my Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97444#M20560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Reeza! Is there a way to get rid of the '? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 21:00:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97444#M20560</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-02-04T21:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to figure out what is wrong with my Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97445#M20561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The apostrophe is an old Excel convention that forces a string that looks like a number to remain a text value. The only way I know to get all the values is to use the MIXED=YES option on the LIBNAME statement. You will get a character-type column for your dates that you will have to transform using myDate = input(date, mmddyy10.).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 21:20:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97445#M20561</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-02-04T21:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to figure out what is wrong with my Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97446#M20562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you PG!&lt;/P&gt;&lt;P&gt;I still got missing values after adding " mixed=yes" to the libname statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 21:28:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97446#M20562</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-02-04T21:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to figure out what is wrong with my Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97447#M20563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that Excel is only scanning 8 lines by default before determining the column type. You can change that behaviour, as recommended by SAS, by setting TypeGuessRows=0 in the Windows registry. Look at the MIXED= YES|NO paragraph in the documentation page :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/acpcref/63181/HTML/default/viewer.htm#n0msy4hy1so0ren1acm90iijxn8j.htm" title="http://support.sas.com/documentation/cdl/en/acpcref/63181/HTML/default/viewer.htm#n0msy4hy1so0ren1acm90iijxn8j.htm"&gt;http://support.sas.com/documentation/cdl/en/acpcref/63181/HTML/default/viewer.htm#n0msy4hy1so0ren1acm90iijxn8j.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 21:59:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97447#M20563</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-02-04T21:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to figure out what is wrong with my Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97448#M20564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi PG and Reesa,&lt;/P&gt;&lt;P&gt;Thank you for your help!:smileylaugh:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2013 15:06:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-me-to-figure-out-what-is-wrong-with-my-Excel-file/m-p/97448#M20564</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-02-05T15:06:44Z</dc:date>
    </item>
  </channel>
</rss>

