<?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: importing xlsx files to sas9.4 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538802#M148350</link>
    <description>Thanks all. there were several errors. one was the missing slash, another&lt;BR /&gt;was that SAS did not want the suffix (sas7dat) \. it finally worked.&lt;BR /&gt;</description>
    <pubDate>Tue, 26 Feb 2019 20:55:47 GMT</pubDate>
    <dc:creator>sminsky</dc:creator>
    <dc:date>2019-02-26T20:55:47Z</dc:date>
    <item>
      <title>importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538739#M148309</link>
      <description>&lt;P&gt;this is my program, I tried all sorts of things, and now it says the file does not exist, but it does....&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;107 PROC IMPORT DATAFILE="C:\Users\Shula\Documents\Yaffa&lt;BR /&gt;107! Rose.PAP_done_undup2.xlsx"&lt;BR /&gt;108 DBMS=xlsx&lt;BR /&gt;109 OUT=YR_papdone REPLACE;&lt;BR /&gt;110 SHEET='papdone';&lt;BR /&gt;111 RUN;&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, C:\Users\Shula\Documents\Yaffa&lt;BR /&gt;Rose.PAP_done_undup2.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 18:04:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538739#M148309</guid>
      <dc:creator>sminsky</dc:creator>
      <dc:date>2019-02-26T18:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538741#M148311</link>
      <description>Are you using SAS on a server or a different type of installation that may not have access to your C drive?</description>
      <pubDate>Tue, 26 Feb 2019 18:12:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538741#M148311</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-26T18:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538751#M148317</link>
      <description>I am using my own personal computer.&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Feb 2019 18:51:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538751#M148317</guid>
      <dc:creator>sminsky</dc:creator>
      <dc:date>2019-02-26T18:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538757#M148321</link>
      <description>&lt;P&gt;What SAS interface are you using? SAS Windowing Environment, Enterprise Guide or SAS Studio? If it is EG, do you use a local or remote SAS server?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 19:04:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538757#M148321</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-02-26T19:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538781#M148334</link>
      <description>&lt;P&gt;When SAS tells you a file is not there, then the file is not there, period.&lt;/P&gt;
&lt;P&gt;If SAS runs on a remote server, it cannot see your local c: drive.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 19:59:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538781#M148334</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-26T19:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538799#M148347</link>
      <description>&lt;P&gt;If you find the file in Windows, hold down SHIFT+CTRL and right click the file. Select Copy as Path.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post that path into your PROC IMPORT statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Should that period be a slash?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;C:\Users\Shula\Documents\Yaffa Rose&lt;FONT size="5" color="#FF0000"&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/FONT&gt;PAP_done_undup2.xlsx&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/264137"&gt;@sminsky&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;this is my program, I tried all sorts of things, and now it says the file does not exist, but it does....&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;107 PROC IMPORT DATAFILE="C:\Users\Shula\Documents\Yaffa&lt;BR /&gt;107! Rose.PAP_done_undup2.xlsx"&lt;BR /&gt;108 DBMS=xlsx&lt;BR /&gt;109 OUT=YR_papdone REPLACE;&lt;BR /&gt;110 SHEET='papdone';&lt;BR /&gt;111 RUN;&lt;/P&gt;
&lt;P&gt;ERROR: Physical file does not exist, C:\Users\Shula\Documents\Yaffa&lt;BR /&gt;Rose.PAP_done_undup2.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 20:44:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538799#M148347</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-26T20:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538802#M148350</link>
      <description>Thanks all. there were several errors. one was the missing slash, another&lt;BR /&gt;was that SAS did not want the suffix (sas7dat) \. it finally worked.&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Feb 2019 20:55:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538802#M148350</guid>
      <dc:creator>sminsky</dc:creator>
      <dc:date>2019-02-26T20:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538809#M148354</link>
      <description>&lt;P&gt;Can you mark the post as answered then please?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 21:07:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538809#M148354</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-02-26T21:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: importing xlsx files to sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538880#M148391</link>
      <description>I don't know how to do this. This was my first connection with the site...&lt;BR /&gt;sorry.&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Feb 2019 04:11:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-xlsx-files-to-sas9-4/m-p/538880#M148391</guid>
      <dc:creator>sminsky</dc:creator>
      <dc:date>2019-02-27T04:11:47Z</dc:date>
    </item>
  </channel>
</rss>

