<?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: prevent creating a new empty row at the bottom of the file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555255#M154506</link>
    <description>&lt;P&gt;set eof to only output when false.&lt;/P&gt;
&lt;P&gt;eof = end of file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or test if a variable is null and if so then do not output record.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 01 May 2019 00:07:35 GMT</pubDate>
    <dc:creator>VDD</dc:creator>
    <dc:date>2019-05-01T00:07:35Z</dc:date>
    <item>
      <title>prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555246#M154503</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am creating a &lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Pipe&lt;/SPAN&gt; delimited CSV file in SAS EG. Everything looks fine only except the end of the file, it created a empty row. Can anyone help me out. My program is like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%MACRO OUTPUT_HEADER(COUNT=);&lt;BR /&gt;%DO I = 1 %TO &amp;amp;COUNT;&lt;BR /&gt;H&amp;amp;I +(-1) '|'&lt;BR /&gt;%END;&lt;BR /&gt;%MEND OUTPUT_HEADER;&lt;/P&gt;&lt;P&gt;DATA _null_;&lt;BR /&gt;SET test ;&lt;BR /&gt;File "&amp;amp;OUT/test_20190429.CSV" dlm='|' dsd lrecl=800;&lt;/P&gt;&lt;P&gt;If _N_=1 then Do;&lt;BR /&gt;H1 = 'ClientID';&lt;BR /&gt;H2 = 'RegionID';&lt;BR /&gt;H3 = 'Name';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Put %OUTPUT_HEADER(COUNT=2) H3;&lt;BR /&gt;End;&lt;/P&gt;&lt;P&gt;Put ClientID +(-1) '|'&lt;BR /&gt;RegionID +(-1) '|'&lt;BR /&gt;Name;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some reason, there is always one empty rows at the bottom of file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestion?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EEEY&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 23:04:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555246#M154503</guid>
      <dc:creator>EEEY</dc:creator>
      <dc:date>2019-04-30T23:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555255#M154506</link>
      <description>&lt;P&gt;set eof to only output when false.&lt;/P&gt;
&lt;P&gt;eof = end of file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or test if a variable is null and if so then do not output record.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 00:07:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555255#M154506</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-05-01T00:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555257#M154507</link>
      <description>&lt;P&gt;It must be something to do with your data.&lt;/P&gt;
&lt;P&gt;This does not add empty rows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set SASHELP.CLASS(obs=4) ;
  file "%sysfunc(pathname(WORK))/test.csv" dlm='|' dsd lrecl=800;
  put SEX +(-1) '|' AGE +(-1) '|' NAME;
run;

data _null_; 
 infile "%sysfunc(pathname(WORK))/test.csv";
 input; 
 put _infile_; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: The infile "X:\SASWORK\_TD4320_NZ8037SPSAS2003_\Prc2/test.csv" is:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Filename=X:\SASWORK\_TD4320_NZ8037SPSAS2003_\Prc2\test.csv,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;RECFM=V,LRECL=32767,File Size (bytes)=51,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Last Modified=01 May 2019 12:13:04,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Create Time=01 May 2019 12:06:24&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;1 M|14|Alfred&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2 F|13|Alice&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;3 F|13|Barbara&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;4 F|14|Carol&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;NOTE: 4 records were read from the infile "X:\SASWORK\_TD4320_NZ8037SPSAS2003_\Prc2/test.csv".&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;The minimum record length was 10.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;The maximum record length was 12.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;NOTE: DATA statement used (Total process time):&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 00:13:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555257#M154507</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-05-01T00:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555259#M154509</link>
      <description>&lt;P&gt;That code should not write any empty lines. Even if the last observations had all empty values it would still write the delimiters.&lt;/P&gt;
&lt;P&gt;Make sure that it is not just that the program you are using to open the file is confused and doesn't understand that all lines in a text file end with end of line characters, even the last one.&amp;nbsp; Some programs get confused and think they are reading a binary file that has "record separators" instead of a text file that has end of line markers.&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 00:23:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555259#M154509</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-05-01T00:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555267#M154514</link>
      <description>&lt;P&gt;Your program is way more complicated than it needs to be.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set test ;
  file "&amp;amp;OUT/test_20190429.CSV" dlm='|' dsd ;

  if _N_=1 then do;
    H1 = 'ClientID';
    H2 = 'RegionID';
    H3 = 'Name';
    put h1-h3;
  end;

  put ClientID RegionID Name;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 May 2019 03:17:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555267#M154514</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-05-01T03:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555279#M154520</link>
      <description>&lt;P&gt;Thanks Tom. Yes thanks for simplying my code. Basically I have 70+ fields in my original program.. After the simplified version, I still have the same problem.&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 05:22:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555279#M154520</guid>
      <dc:creator>EEEY</dc:creator>
      <dc:date>2019-05-01T05:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555281#M154521</link>
      <description>&lt;P&gt;I need to rephrase the issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the file looks fine, only except the cursor ends at the 1st position of next row of data if &lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;opening it in TextPad.&amp;nbsp;&lt;/SPAN&gt;. I wanted the cursor to end at the last position of last row of data, and not going to the next row.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 05:31:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555281#M154521</guid>
      <dc:creator>EEEY</dc:creator>
      <dc:date>2019-05-01T05:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555296#M154532</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;A simple SAS&amp;nbsp; Put statement with no modifiers puts each line with an end-of-line mark, and number of lines in the file is the number of&amp;nbsp;end-of-line marks.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;A different thing is what you see in the editor. Consider this example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;145  data _null_;
146      file 'c:\temp\test.csv';
147      put 'Hansen';
148      put 'Jensen';
149  run;

NOTE: The file 'c:\temp\test.csv' is:
      Filename=c:\temp\test.csv,
      RECFM=V,LRECL=32767,File Size (bytes)=0,
      Last Modified=01. maj 2019 09:52:48,
      Create Time=01. maj 2019 09:41:15

NOTE: 2 records were written to the file 'c:\temp\test.csv'.
      The minimum record length was 6.
      The maximum record length was 6.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


150
151  data _null_;
152      infile 'c:\temp\test.csv';
153      input navn$;
154  run;

NOTE: The infile 'c:\temp\test.csv' is:
      Filename=c:\temp\test.csv,
      RECFM=V,LRECL=32767,File Size (bytes)=16,
      Last Modified=01. maj 2019 09:52:48,
      Create Time=01. maj 2019 09:41:15

NOTE: 2 records were read from the infile 'c:\temp\test.csv'.
      The minimum record length was 6.
      The maximum record length was 6.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;There are 2 lines written to the file, and 2 lines read from the file, so it is verified that the file contains 2 lines.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;But if you open the file in an editor, you see:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="2lines.gif" style="width: 309px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29145i8D0B4CDFE67B997F/image-size/large?v=v2&amp;amp;px=999" role="button" title="2lines.gif" alt="2lines.gif" /&gt;&lt;/span&gt;&lt;/SPAN&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;P&gt;&amp;nbsp;&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;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So it seems that your code works, and the confusion stems from the editor's way of displaying the file.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 07:59:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555296#M154532</guid>
      <dc:creator>ErikLund_Jensen</dc:creator>
      <dc:date>2019-05-01T07:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555337#M154551</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/25233"&gt;@EEEY&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I need to rephrase the issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the file looks fine, only except the cursor ends at the 1st position of next row of data if &lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;opening it in TextPad.&amp;nbsp;&lt;/SPAN&gt;. I wanted the cursor to end at the last position of last row of data, and not going to the next row.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Why do you care that TextPad displays the file that way?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that TextPad is an EDITOR.&amp;nbsp; It has decided to give you a place to add characters after the end of the file by displaying an extra line number.&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 14:10:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555337#M154551</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-05-01T14:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555361#M154555</link>
      <description>&lt;P&gt;How about this one ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
 set sashelp.class end=last;
 file 'c:\temp\x.csv' dsd recfm=n;
 put (_all_) (:) ;
 if not last then put '0D0A'x;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 May 2019 14:03:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555361#M154555</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-05-01T14:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555430#M154567</link>
      <description>&lt;P&gt;This is working and exactly what i needed..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Really appreciate your help Ksharp!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 17:40:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555430#M154567</guid>
      <dc:creator>EEEY</dc:creator>
      <dc:date>2019-05-01T17:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555432#M154568</link>
      <description>Just my vendor is very picky about it and need the cursor stops at the end of data. with the code below, If i open it in TextPad, the cursor ends at the last position when you click the blank area in the file.&lt;BR /&gt;Thanks so much for your comments!!!</description>
      <pubDate>Wed, 01 May 2019 17:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555432#M154568</guid>
      <dc:creator>EEEY</dc:creator>
      <dc:date>2019-05-01T17:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: prevent creating a new empty row at the bottom of the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555434#M154569</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/25233"&gt;@EEEY&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Just my vendor is very picky about it and need the cursor stops at the end of data. with the code below, If i open it in TextPad, the cursor ends at the last position when you click the blank area in the file.&lt;BR /&gt;Thanks so much for your comments!!!&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What is the VENDOR?&amp;nbsp; Is it for some software you are going to load the file into? What system?&lt;/P&gt;
&lt;P&gt;Did you explain to the vendor that lines in text files end with end of line markers.&amp;nbsp; How does their system know you haven't sent a truncated file if the last line does not have a proper ending?&lt;/P&gt;
&lt;P&gt;The only way to prevent the proliferation of this type of interoperabilty malfunctions is to publicly shame them. At least get them to admit that their required file format is neither a CSV (delimited) file nor is even a properly formatted TEXT file.&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 17:52:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/prevent-creating-a-new-empty-row-at-the-bottom-of-the-file/m-p/555434#M154569</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-05-01T17:52:15Z</dc:date>
    </item>
  </channel>
</rss>

