<?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 Is it possible to import a .data file into SAS in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367071#M11067</link>
    <description>&lt;P&gt;I was given three data sets in .data format. Is it possible to import these into SS without converting them first?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Wed, 14 Jun 2017 17:34:12 GMT</pubDate>
    <dc:creator>rbolanos</dc:creator>
    <dc:date>2017-06-14T17:34:12Z</dc:date>
    <item>
      <title>Is it possible to import a .data file into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367071#M11067</link>
      <description>&lt;P&gt;I was given three data sets in .data format. Is it possible to import these into SS without converting them first?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 17:34:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367071#M11067</guid>
      <dc:creator>rbolanos</dc:creator>
      <dc:date>2017-06-14T17:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to import a .data file into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367073#M11068</link>
      <description>&lt;P&gt;Are these files text or some sort of binary format?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If could post a few rows of the data in a code box opened using the forum's {i} menu icon we may be able to provide examples of what ot look for in the way of options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the data is in a proprietary data format such as some program uses it may be tricky but many text based file formats aren't much of an issue.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 17:38:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367073#M11068</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-06-14T17:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to import a .data file into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367079#M11069</link>
      <description>&lt;P&gt;I believe its text. When I open it in a newer version of excel it gives me the options of creating spaces between the data and when you do that it looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9421iF0ED357A052B5F46/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="excel.png" title="excel.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 17:48:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367079#M11069</guid>
      <dc:creator>rbolanos</dc:creator>
      <dc:date>2017-06-14T17:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to import a .data file into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367089#M11070</link>
      <description>&lt;P&gt;Excel will probably transform the data. Better to just write a simple data step to dump a few records to the log.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile 'myfile.data' obs=5 ;
  input;
  list;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Jun 2017 18:03:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367089#M11070</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-06-14T18:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to import a .data file into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367119#M11071</link>
      <description>&lt;P&gt;If you had to indicate where to break the values the data might be fixed column, in which case if you have a description document for the file SAS can read it fairly easily.&lt;/P&gt;
&lt;P&gt;Or possibly delimited with tab, comma or similar character separating the values, which SAS cal also.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would be very careful letting Excel hand a file as under a number of cases the value of cells saved in Excel can be different than intended.&lt;/P&gt;
&lt;P&gt;I have seen Excel turn account numbers such as 123-456 into either arithmetic results or dates depending on the values of the numbers.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 19:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Is-it-possible-to-import-a-data-file-into-SAS/m-p/367119#M11071</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-06-14T19:25:52Z</dc:date>
    </item>
  </channel>
</rss>

