<?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: Import .XLS  extra empty column in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277245#M55644</link>
    <description>&lt;P&gt;The "WHY" in a bit more detail than &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ﻿&lt;/a&gt;&amp;nbsp;mentions is that if a column or row in Excel has a value entered in a cell and then the value is deleted Excel "remembers" the column or row has been used. So when you ask Excel to tell you what is in the data via Proc Import it tells the data linkage that column has data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might also want to check for entire rows at the end of your data set without values.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jun 2016 14:26:55 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-06-14T14:26:55Z</dc:date>
    <item>
      <title>Import .XLS  extra empty column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277106#M55594</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to import the attached xls file, I get the empty O column....how knows why? how I get rid of it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Roger&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 04:11:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277106#M55594</guid>
      <dc:creator>Roger12</dc:creator>
      <dc:date>2016-06-14T04:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Import .XLS  extra empty column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277110#M55595</link>
      <description>&lt;P&gt;Something must have been typed in it at some point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just drop it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc import out=TABLE(drop=O)&amp;nbsp; ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 04:36:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277110#M55595</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-06-14T04:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Import .XLS  extra empty column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277119#M55597</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile='/folders/myfolders/health_exam_results.xls' 
out=have 
replace 
dbms=xls;
range='health_exam_results$A1:N100';
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Jun 2016 05:40:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277119#M55597</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-14T05:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Import .XLS  extra empty column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277245#M55644</link>
      <description>&lt;P&gt;The "WHY" in a bit more detail than &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ﻿&lt;/a&gt;&amp;nbsp;mentions is that if a column or row in Excel has a value entered in a cell and then the value is deleted Excel "remembers" the column or row has been used. So when you ask Excel to tell you what is in the data via Proc Import it tells the data linkage that column has data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might also want to check for entire rows at the end of your data set without values.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 14:26:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/277245#M55644</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-06-14T14:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Import .XLS  extra empty column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/433021#M107310</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;that was a very good explanation. I just created new excel sheet and no issues so far. Even i was having blank columns while importing because i highlight whole row.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After creating new excel , everything is okay.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many thanks for explaining WHY?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;P&gt;&lt;img id="manhappy" class="emoticon emoticon-manhappy" src="https://communities.sas.com/i/smilies/16x16_man-happy.png" alt="Man Happy" title="Man Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 07:10:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-XLS-extra-empty-column/m-p/433021#M107310</guid>
      <dc:creator>samgautam007</dc:creator>
      <dc:date>2018-02-01T07:10:37Z</dc:date>
    </item>
  </channel>
</rss>

