<?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: PROC IMPORT in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19444#M3961</link>
    <description>Actually we do not have SPSS either. Is there any way we can programmatically code these sas 9 options in a data step in v8</description>
    <pubDate>Thu, 26 Jun 2008 15:37:35 GMT</pubDate>
    <dc:creator>hkotian</dc:creator>
    <dc:date>2008-06-26T15:37:35Z</dc:date>
    <item>
      <title>PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19438#M3955</link>
      <description>Does anybody know how to use SASV9 PROC IMPORT options &lt;BR /&gt;
scantext,scantime,mixed in SAS V8. Is there any alternative procedure/datastep that can be used in SAS to import excel file(.xls)</description>
      <pubDate>Tue, 20 May 2008 18:39:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19438#M3955</guid>
      <dc:creator>hkotian</dc:creator>
      <dc:date>2008-05-20T18:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19439#M3956</link>
      <description>do you have license for SAS/ACCESS - PC? If so, &lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;	 PROC IMPORT OUT= outfile&lt;BR /&gt;
	            DATAFILE= "... excel in file ..." &lt;BR /&gt;
	            DBMS=EXCEL2000 REPLACE; *** excel versions;&lt;BR /&gt;
	     SHEET="... sheet name ..."; &lt;BR /&gt;
	     GETNAMES=YES;&lt;BR /&gt;
	 RUN;&lt;/B&gt;</description>
      <pubDate>Fri, 20 Jun 2008 16:07:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19439#M3956</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-06-20T16:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19440#M3957</link>
      <description>Also, if you have SAS 9 and SAS/Access for PC File Formats, then you can also use the SAS Excel Libname engine:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/16/176.html" target="_blank"&gt;http://support.sas.com/kb/16/176.html&lt;/A&gt; has an example of:&lt;BR /&gt;
[pre]&lt;BR /&gt;
  libname mylib "C:\My Documents\MyFile.xls";&lt;BR /&gt;
    &lt;BR /&gt;
  proc print data=mylib.'Sheet1$'n; run;&lt;BR /&gt;
          &lt;BR /&gt;
  data sasuser.new;&lt;BR /&gt;
    set mylib.'Sheet3$'n;&lt;BR /&gt;
  run;&lt;BR /&gt;
          &lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
and there is other documentation and notes about the LIBNAME engine access to Excel:&lt;BR /&gt;
 &lt;A href="http://support.sas.com/kb/13/050.html" target="_blank"&gt;http://support.sas.com/kb/13/050.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/13/948.html" target="_blank"&gt;http://support.sas.com/kb/13/948.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/4/432.html" target="_blank"&gt;http://support.sas.com/kb/4/432.html&lt;/A&gt; (note abt SAS &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
And, there are ODBC or OLE-DB or DDE methods -- but those fall into the non-SAS technology column.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 20 Jun 2008 16:14:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19440#M3957</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-06-20T16:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19441#M3958</link>
      <description>We do have SAS version 9 but we do not have PC file formats installed on the UNIX box, hence the problem. &lt;BR /&gt;
Is there an alternate way to do this</description>
      <pubDate>Sat, 21 Jun 2008 01:29:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19441#M3958</guid>
      <dc:creator>hkotian</dc:creator>
      <dc:date>2008-06-21T01:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19442#M3959</link>
      <description>Okay, do you have SPSS V14 or later? (V13 had some bugs)&lt;BR /&gt;
In SPSS, from File\Open\data..., use xls type and pick your excel file. Follow some options (data second line, etc). Then from File\Save as ... pick &lt;B&gt;.sas7bdat&lt;/B&gt; as file type and save. The SAS dataset is now in your excel folder.&lt;BR /&gt;
&lt;BR /&gt;
Htun Lynn</description>
      <pubDate>Mon, 23 Jun 2008 15:55:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19442#M3959</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-06-23T15:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19443#M3960</link>
      <description>Actually we do not have SPSS either. Is there any way we can programmatically code these sas 9 options in a data step in v8</description>
      <pubDate>Thu, 26 Jun 2008 15:37:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19443#M3960</guid>
      <dc:creator>hkotian</dc:creator>
      <dc:date>2008-06-26T15:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19444#M3961</link>
      <description>Actually we do not have SPSS either. Is there any way we can programmatically code these sas 9 options in a data step in v8</description>
      <pubDate>Thu, 26 Jun 2008 15:37:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19444#M3961</guid>
      <dc:creator>hkotian</dc:creator>
      <dc:date>2008-06-26T15:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19445#M3962</link>
      <description>You could save the xl file as a text file and then read it with a sas data step ...</description>
      <pubDate>Fri, 27 Jun 2008 13:55:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19445#M3962</guid>
      <dc:creator>Bill</dc:creator>
      <dc:date>2008-06-27T13:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19446#M3963</link>
      <description>&amp;gt; We do have SAS version 9 but we do not have PC file&lt;BR /&gt;
&amp;gt; formats installed on the UNIX box, hence the problem.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Is there an alternate way to do this&lt;BR /&gt;
&lt;BR /&gt;
I think the only way is to export the Excel-Worksheet to csv and import that file by using either proc import or a data step.</description>
      <pubDate>Mon, 30 Jun 2008 05:47:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT/m-p/19446#M3963</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2008-06-30T05:47:27Z</dc:date>
    </item>
  </channel>
</rss>

