<?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: Merging?? Write SAS code to Read a file and import an excel file in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525461#M4976</link>
    <description>&lt;P&gt;You cannot merge these files. They have nothing in common and there's no basis or logic that would be correct to merge them. I suspect you misunderstood the instructions somewhere.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you download the data (sas data set, somedata.sas7bdat) and place it in the myfolders&amp;nbsp;location you created, you can access the data as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class="language-sas"&gt;*set path to permanent library;
libname myData '/folders/myfolders/';


*show summary to match Word doc;
proc means data=myData.somedata; 
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jan 2019 16:11:18 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-01-08T16:11:18Z</dc:date>
    <item>
      <title>Merging?? Write SAS code to Read a file and import an excel file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525267#M4928</link>
      <description>&lt;P&gt;Hello everyone. Can you help with is problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Write SAS code to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Read a file called: SOMEDATA.SAS7BDAT&amp;nbsp; &amp;amp;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Import an Excel data file (CSV) called “CARSMPG.CSV”&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;after downloading the data files.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help. I was not able to find a tutorial for this. A step by step is appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The desired result is in the attached file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 22:49:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525267#M4928</guid>
      <dc:creator>naeemahb1</dc:creator>
      <dc:date>2019-01-07T22:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Merging?? Write SAS code to Read a file and import an excel file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525270#M4929</link>
      <description>&lt;P&gt;Importing or accessing files&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://video.sas.com/detail/videos/sas-analytics-u/video/4664335810001/accessing-your-existing-data-in-sas-university-edition:-download-version?autoStart=true" target="_blank"&gt;https://video.sas.com/detail/videos/sas-analytics-u/video/4664335810001/accessing-your-existing-data-in-sas-university-edition:-download-version?autoStart=true&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Merge:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://video.sas.com/detail/video/4572997800001/merging-sas-tables-in-a-data-step?autoStart=true&amp;amp;q=merge" target="_blank"&gt;https://video.sas.com/detail/video/4572997800001/merging-sas-tables-in-a-data-step?autoStart=true&amp;amp;q=merge&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/229065"&gt;@naeemahb1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello everyone. Can you help with is problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Write SAS code to:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Read a file called: SOMEDATA.SAS7BDAT&amp;nbsp; &amp;amp;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Import an Excel data file (CSV) called “CARSMPG.CSV”&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;after downloading the data files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help. I was not able to find a tutorial for this. A step by step is appreciated.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The desired result is in the attached file.&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 22:52:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525270#M4929</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-07T22:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: Merging?? Write SAS code to Read a file and import an excel file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525282#M4930</link>
      <description>&lt;P&gt;BTW, CSV files are text files that are in a format that spreadsheet programs can read. They are not "Excel files". Searching for reading Excel files will make things much more complicated than needed.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 23:30:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525282#M4930</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-07T23:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Merging?? Write SAS code to Read a file and import an excel file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525288#M4931</link>
      <description>Since the file is CSV, here's a video on exactly importing CSV files. &lt;BR /&gt;&lt;A href="https://video.sas.com/detail/video/4573016758001/creating-a-sas-table-from-a-csv-file?autoStart=true&amp;amp;q=csv" target="_blank"&gt;https://video.sas.com/detail/video/4573016758001/creating-a-sas-table-from-a-csv-file?autoStart=true&amp;amp;q=csv&lt;/A&gt;</description>
      <pubDate>Mon, 07 Jan 2019 23:59:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525288#M4931</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-07T23:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Merging?? Write SAS code to Read a file and import an excel file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525461#M4976</link>
      <description>&lt;P&gt;You cannot merge these files. They have nothing in common and there's no basis or logic that would be correct to merge them. I suspect you misunderstood the instructions somewhere.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you download the data (sas data set, somedata.sas7bdat) and place it in the myfolders&amp;nbsp;location you created, you can access the data as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class="language-sas"&gt;*set path to permanent library;
libname myData '/folders/myfolders/';


*show summary to match Word doc;
proc means data=myData.somedata; 
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 16:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/525461#M4976</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-08T16:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Merging</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/526095#M5050</link>
      <description>Thank you so much. This is exactly what I needed as I did misunderstand the&lt;BR /&gt;assignment directions.</description>
      <pubDate>Thu, 10 Jan 2019 16:32:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Merging-Write-SAS-code-to-Read-a-file-and-import-an-excel-file/m-p/526095#M5050</guid>
      <dc:creator>naeemahb1</dc:creator>
      <dc:date>2019-01-10T16:32:02Z</dc:date>
    </item>
  </channel>
</rss>

