<?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: How to import an excel file in SEG----Confused in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-import-an-excel-file-in-SEG-Confused/m-p/363480#M23848</link>
    <description>&lt;P&gt;Where is SAS installed in this case? &amp;nbsp;Are you running with local SAS (installed on Windows along with SAS Enterprise Guide), or are you connecting to a remote SAS session? &amp;nbsp;If the latter, then the Excel file might not be accessible from that session using the path you specified.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case, users often need to copy the Excel file to the remote SAS session in order to complete the import step. &amp;nbsp;Fortunately this is &lt;A href="http://blogs.sas.com/content/sasdummy/2012/12/06/copy-files-in-sas-eg/" target="_self"&gt;easy to do with a Copy Files task &lt;/A&gt;-- a custom task for EG 5.1 but built-in for EG 7.13 and later.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 01 Jun 2017 15:04:42 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2017-06-01T15:04:42Z</dc:date>
    <item>
      <title>How to import an excel file in SEG----Confused</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-import-an-excel-file-in-SEG-Confused/m-p/363414#M23846</link>
      <description>&lt;P&gt;i have run below code by using&amp;nbsp;&lt;SPAN&gt;Sas Enterprice Guide 5.1(32 Bit) and it's runs successfully but&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;proc import datafile= "C:/PARAMETERS/Deviate_Param.XLS"
out=WORK.param
dbms=XLS
replace;
sheet="Parameters";
getnames=Yes;
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;i have run same code in&amp;nbsp;&lt;SPAN&gt;Sas Enterprice Guide 5.1(64 Bit) and log shows physical files doesn't exist..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;after that i have changed(refer below code) the &lt;EM&gt;XLS to xls (upper case to lower case)&lt;/EM&gt; and program runs&amp;nbsp;successfully without error and warning.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc import datafile= "C:/PARAMETERS/Deviate_Param.xls"
out=WORK.param
dbms=XLS
replace;
sheet="Parameters";
getnames=Yes;
run;&lt;/PRE&gt;&lt;P&gt;is there any rules are in sas enterprice guide?kindly anyone explain this ?????&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 13:17:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-import-an-excel-file-in-SEG-Confused/m-p/363414#M23846</guid>
      <dc:creator>RajeshManickam</dc:creator>
      <dc:date>2017-06-01T13:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to import an excel file in SEG----Confused</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-import-an-excel-file-in-SEG-Confused/m-p/363426#M23847</link>
      <description>&lt;P&gt;What bit version is your Office software? &amp;nbsp;By exporting/importing your data using XLS your invoking the Office software to use the file, if that bit type doesn't match your SAS bit version then you will have problems. &amp;nbsp;I would recommend using one of the other options possibly even libname excel may work in this scenario if you have 9.4:&lt;/P&gt;
&lt;PRE&gt;libname tmp excel "c:/paramters/deviate_param.xlsx";

data work.param;
  set tmp.parameters;
run;

libname tmp clear;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Avoiding proprietary file formats such as Office is always an option, plain text CSV files can be read in by any system on any OS.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 13:36:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-import-an-excel-file-in-SEG-Confused/m-p/363426#M23847</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-06-01T13:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to import an excel file in SEG----Confused</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-import-an-excel-file-in-SEG-Confused/m-p/363480#M23848</link>
      <description>&lt;P&gt;Where is SAS installed in this case? &amp;nbsp;Are you running with local SAS (installed on Windows along with SAS Enterprise Guide), or are you connecting to a remote SAS session? &amp;nbsp;If the latter, then the Excel file might not be accessible from that session using the path you specified.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case, users often need to copy the Excel file to the remote SAS session in order to complete the import step. &amp;nbsp;Fortunately this is &lt;A href="http://blogs.sas.com/content/sasdummy/2012/12/06/copy-files-in-sas-eg/" target="_self"&gt;easy to do with a Copy Files task &lt;/A&gt;-- a custom task for EG 5.1 but built-in for EG 7.13 and later.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 15:04:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-import-an-excel-file-in-SEG-Confused/m-p/363480#M23848</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-06-01T15:04:42Z</dc:date>
    </item>
  </channel>
</rss>

