<?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: Writing fixed-width text files in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134976#M27433</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simplest fix is to add the following line code after your SET statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if _n_=1 then put 'Product ID';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jun 2014 05:31:07 GMT</pubDate>
    <dc:creator>FloydNevseta</dc:creator>
    <dc:date>2014-06-10T05:31:07Z</dc:date>
    <item>
      <title>Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134975#M27432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help writing fixed-width text files from SAS dataset.&amp;nbsp; I have SAS data set – Product with Product ID – 1, 2 and 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I’m using following code to create text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;filename&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; outfile &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Courier New';"&gt;"/mnt/data01/test.txt"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;_null_&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;file&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; outfile ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;set&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; WORK.Product; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;put&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; @&lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-family: 'Courier New';"&gt;1&lt;/STRONG&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Courier New';"&gt;'Product ID'n&lt;/SPAN&gt; &lt;STRONG style="color: teal; background: white; font-family: 'Courier New';"&gt;10.&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;Result of the output is &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;123&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;I would like the output to be&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;Product ID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 20:52:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134975#M27432</guid>
      <dc:creator>newbi</dc:creator>
      <dc:date>2014-06-09T20:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134976#M27433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simplest fix is to add the following line code after your SET statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if _n_=1 then put 'Product ID';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 05:31:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134976#M27433</guid>
      <dc:creator>FloydNevseta</dc:creator>
      <dc:date>2014-06-10T05:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134977#M27434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your product id a numeric or character variable? You may have issues geting a numeric to left justify in this context.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 14:49:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134977#M27434</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-06-10T14:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134978#M27435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do a proc export to a text file and see the code generated in the log. That will let you know how to specify your code.&lt;/P&gt;&lt;P&gt;Something like the following may work as well (untested)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;filename&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; outfile &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Courier New';"&gt;"/mnt/data01/test.txt"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;_null_&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;file&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; outfile ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;set&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; WORK.Product; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; if _n_=1 then put 'Product ID';&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;put&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Courier New';"&gt;'Product ID'n&lt;/SPAN&gt;&amp;nbsp; &lt;STRONG style="color: teal; background: white; font-family: 'Courier New';"&gt;10.&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 14:55:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134978#M27435</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-06-10T14:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134979#M27436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i used the&amp;nbsp;&amp;nbsp; if _n_ =1 then put .....and i'm still getting data in one line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Product ID&lt;/P&gt;&lt;P&gt;123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I woulud like the result to be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Product ID&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:20:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134979#M27436</guid>
      <dc:creator>newbi</dc:creator>
      <dc:date>2014-06-11T14:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134980#M27437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Post your code.&lt;/P&gt;&lt;P&gt;That isn't happening for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename outfile "C:\_localdata\test.txt";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;file outfile;&lt;/P&gt;&lt;P&gt;set sashelp.class;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if _n_=1 then put "Name";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put name $8.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:36:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134980#M27437</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-06-11T14:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134981#M27438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would this work on Linux ? Outfile file is on linux server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:56:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134981#M27438</guid>
      <dc:creator>newbi</dc:creator>
      <dc:date>2014-06-11T14:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134982#M27439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your dataset cotains one row 123. If that is the case then try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data product;&lt;BR /&gt;infile datalines;&lt;BR /&gt;input product_id $;&lt;BR /&gt;datalines;&lt;BR /&gt;123&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;filename outfile "C:\_localdata\test.txt";&lt;/P&gt;&lt;P&gt;data _null_; &lt;BR /&gt;file outfile;&lt;BR /&gt;set Product;&lt;BR /&gt;if _N_ = 1 then put&amp;nbsp; 'Product_id';&lt;BR /&gt;do _N_ = 1 to length(Product_id);&lt;BR /&gt;id=substr(Product_id,_N_,1);&lt;BR /&gt;put @1'id'n 10.;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:02:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134982#M27439</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-06-11T15:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134983#M27440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it works on unix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does your data look like?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another possibility is your text editor is garbling it. Try viewing it in something else or via the more command in unix.&lt;/P&gt;&lt;P&gt;You still haven't posted your code though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:07:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134983#M27440</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-06-11T15:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134984#M27441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reeza,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the following code and when I transfer the file from Linux to windows files out put is&amp;nbsp; - Product_id 123.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I edit the file out put is different -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Product ID&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;Reeza wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Yes it works on unix.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;What does your data look like?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Another possibility is your text editor is garbling it. Try viewing it in something else or via the more command in unix.&lt;/P&gt;
&lt;P&gt;You still haven't posted your code though.&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;data product;&lt;BR /&gt;infile datalines;&lt;BR /&gt;input product_id $;&lt;BR /&gt;datalines;&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;filename outfile "/mnt/data01/test.txt";&lt;/P&gt;&lt;P&gt;data _null_; &lt;BR /&gt;file outfile Encoding=u;&lt;BR /&gt;set Product;&lt;BR /&gt;if _N_ = 1 then put&amp;nbsp; 'Product_id';&lt;BR /&gt;do _N_ = 1 to length(Product_id);&lt;BR /&gt;id=substr(Product_id,_N_,1);&lt;BR /&gt;put @1'id'n 10.;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 01:13:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134984#M27441</guid>
      <dc:creator>newbi</dc:creator>
      <dc:date>2014-06-12T01:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134985#M27442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds like your file is getting converted somehow in transit.&lt;/P&gt;&lt;P&gt;SAS is actually very good at looking at what is actually in your file.&lt;/P&gt;&lt;P&gt;Try this simple data step on your file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; infile outfile ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; input;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; list;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try it using RECFM=F and LRECL=80 in the INFILE statement and then you can see what characters are placed between the lines. &lt;/P&gt;&lt;P&gt;Windows normally expects CR+LF ('0D0A'X) at the end of every line and Unix will normally just have LF ('0A'x).&amp;nbsp; In the old days Mac's used just CR ('0D'X) but I don't think they do that any more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 22:47:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134985#M27442</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-06-13T22:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Writing fixed-width text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134986#M27443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all your help.&amp;nbsp; I was able to resolve the issue by using the "termstr=CRLF" option.&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/14/178.html" title="http://support.sas.com/kb/14/178.html"&gt;http://support.sas.com/kb/14/178.html&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;A href="http://support.sas.com/kb/14/178.html"&gt;http://support.sas.com/kb/14/178.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;BR /&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2014 20:31:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-fixed-width-text-files/m-p/134986#M27443</guid>
      <dc:creator>newbi</dc:creator>
      <dc:date>2014-06-16T20:31:37Z</dc:date>
    </item>
  </channel>
</rss>

