<?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 excel file to SAS in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330797#M21956</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/127989"&gt;@byeh2017&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can select the location you prefer as permanent location. I am sure you have your home/user folder where you store all your code and other archives.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, a recommendation: I highly recommend you to change the final name of your sas datasets from&amp;nbsp;&lt;SPAN&gt;"work.'inpatient data basefile'n" to something more simple and readable as:&amp;nbsp;"myfolder.InpatientData" or similar.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Feb 2017 11:44:38 GMT</pubDate>
    <dc:creator>JuanS_OCS</dc:creator>
    <dc:date>2017-02-08T11:44:38Z</dc:date>
    <item>
      <title>Importing excel file to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330771#M21950</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New to SAS. After importing my excel file to SAS, how do I save the file permanently into a sas dataset? Everytime I save the project and close out, I have to reimport the dataset again. Thanks for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bryan&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 10:25:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330771#M21950</guid>
      <dc:creator>byeh2017</dc:creator>
      <dc:date>2017-02-08T10:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Importing excel file to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330786#M21953</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/127989"&gt;@byeh2017&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you have your excel file in SAS in a sas dataset, you can use a library and a data step to save it from the work location to the library (permanent location).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something as the following code should work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname myfolder BASE "C:\my_folder";

data myfolder.myexcel;
set work.myexcel;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Feb 2017 11:12:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330786#M21953</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2017-02-08T11:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Importing excel file to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330794#M21955</link>
      <description>&lt;P&gt;Is the base where the library folder name should be? How do I know the location of my library folder? At this point my temporary dataset from excel on SAS is called "work.'inpatient data basefile'n"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 11:41:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330794#M21955</guid>
      <dc:creator>byeh2017</dc:creator>
      <dc:date>2017-02-08T11:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Importing excel file to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330797#M21956</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/127989"&gt;@byeh2017&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can select the location you prefer as permanent location. I am sure you have your home/user folder where you store all your code and other archives.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, a recommendation: I highly recommend you to change the final name of your sas datasets from&amp;nbsp;&lt;SPAN&gt;"work.'inpatient data basefile'n" to something more simple and readable as:&amp;nbsp;"myfolder.InpatientData" or similar.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 11:44:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Importing-excel-file-to-SAS/m-p/330797#M21956</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2017-02-08T11:44:38Z</dc:date>
    </item>
  </channel>
</rss>

