<?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 All of my data shows up in only one column in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/All-of-my-data-shows-up-in-only-one-column/m-p/280013#M7940</link>
    <description>&lt;P&gt;I uploaded this txt file and the output data displays everything in only one column. How do I get it show the data in the seperate columns. Here's the code I used and attached are screenshots.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Generated Code (IMPORT) */&lt;BR /&gt;/* Source File: hbat tabs.txt */&lt;BR /&gt;/* Source Path: /home/tmaciver7840/my_content */&lt;BR /&gt;/* Code generated on: Friday, June 24, 2016 3:03:23 PM */&lt;/P&gt;&lt;P&gt;%web_drop_table(WORK.IMPORT3);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FILENAME REFFILE "/home/tmaciver7840/my_content/hbat tabs.txt" TERMSTR=CR;&lt;/P&gt;&lt;P&gt;PROC IMPORT DATAFILE=REFFILE&lt;BR /&gt;DBMS=DLM&lt;BR /&gt;OUT=WORK.IMPORT3;&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC CONTENTS DATA=WORK.IMPORT3; RUN;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%web_open_table(WORK.IMPORT3);&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12690iC908F8777A9C3099/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-06-24 at 11.12.19 AM.png" title="Screen Shot 2016-06-24 at 11.12.19 AM.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12691i08DE24A0A0D27DFE/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-06-24 at 11.11.59 AM.png" title="Screen Shot 2016-06-24 at 11.11.59 AM.png" /&gt;</description>
    <pubDate>Fri, 24 Jun 2016 15:12:55 GMT</pubDate>
    <dc:creator>Tommac72584</dc:creator>
    <dc:date>2016-06-24T15:12:55Z</dc:date>
    <item>
      <title>All of my data shows up in only one column</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/All-of-my-data-shows-up-in-only-one-column/m-p/280013#M7940</link>
      <description>&lt;P&gt;I uploaded this txt file and the output data displays everything in only one column. How do I get it show the data in the seperate columns. Here's the code I used and attached are screenshots.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Generated Code (IMPORT) */&lt;BR /&gt;/* Source File: hbat tabs.txt */&lt;BR /&gt;/* Source Path: /home/tmaciver7840/my_content */&lt;BR /&gt;/* Code generated on: Friday, June 24, 2016 3:03:23 PM */&lt;/P&gt;&lt;P&gt;%web_drop_table(WORK.IMPORT3);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FILENAME REFFILE "/home/tmaciver7840/my_content/hbat tabs.txt" TERMSTR=CR;&lt;/P&gt;&lt;P&gt;PROC IMPORT DATAFILE=REFFILE&lt;BR /&gt;DBMS=DLM&lt;BR /&gt;OUT=WORK.IMPORT3;&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC CONTENTS DATA=WORK.IMPORT3; RUN;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%web_open_table(WORK.IMPORT3);&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12690iC908F8777A9C3099/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-06-24 at 11.12.19 AM.png" title="Screen Shot 2016-06-24 at 11.12.19 AM.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12691i08DE24A0A0D27DFE/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-06-24 at 11.11.59 AM.png" title="Screen Shot 2016-06-24 at 11.11.59 AM.png" /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 15:12:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/All-of-my-data-shows-up-in-only-one-column/m-p/280013#M7940</guid>
      <dc:creator>Tommac72584</dc:creator>
      <dc:date>2016-06-24T15:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: All of my data shows up in only one column</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/All-of-my-data-shows-up-in-only-one-column/m-p/280014#M7941</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the name of the file and how it behaves, I assume you have a tab delimited file. So your Proc IMPORT code should say DBMS=TAB&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import
  out=work.book
  datafile="c:\temp\book1_tab.txt"
  dbms=tab
  replace
;
  getnames=yes;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 15:24:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/All-of-my-data-shows-up-in-only-one-column/m-p/280014#M7941</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-06-24T15:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: All of my data shows up in only one column</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/All-of-my-data-shows-up-in-only-one-column/m-p/280015#M7942</link>
      <description>Yes it is a tab delimited. This fixed it. Thank you Bruno!</description>
      <pubDate>Fri, 24 Jun 2016 15:30:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/All-of-my-data-shows-up-in-only-one-column/m-p/280015#M7942</guid>
      <dc:creator>Tommac72584</dc:creator>
      <dc:date>2016-06-24T15:30:23Z</dc:date>
    </item>
  </channel>
</rss>

