<?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: How to convert sas dataset file to TXT file. Thanks. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845223#M36795</link>
    <description>&lt;P&gt;With a couple of ways to create CSV mentioned it may be time to ask "what flavor of text file?" Other than CSV (comman separated values) there are other characters used to separate each value. Common choices are tab and pipe (|) characters, less frequently colons or semicolons. Sometimes multiple characters.&lt;/P&gt;
&lt;P&gt;Or maybe fixed width where each column (variable) has text start in the some character position.&lt;/P&gt;
&lt;P&gt;Or maybe something less common like Named output where you indicate a variable name followed by an = and the value, which would include quotes when there are spaces: somevar="This a named value"&lt;/P&gt;
&lt;P&gt;Or perhaps other specific text file formats like JSON, XML or similar.&lt;/P&gt;
&lt;P&gt;Or even a report layout?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Nov 2022 22:49:40 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2022-11-18T22:49:40Z</dc:date>
    <item>
      <title>How to convert sas dataset file to TXT file. Thanks.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845037#M36757</link>
      <description />
      <pubDate>Fri, 18 Nov 2022 04:39:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845037#M36757</guid>
      <dc:creator>beewise</dc:creator>
      <dc:date>2022-11-18T04:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert sas dataset file to TXT file. Thanks.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845039#M36758</link>
      <description>&lt;P&gt;How about a CSV file?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set have;
  file "filename.csv" dsd ;
  put (_all_) (+0);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;With a little more work you can add a header row that shows the names of the variables also.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 05:40:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845039#M36758</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-11-18T05:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert sas dataset file to TXT file. Thanks.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845218#M36793</link>
      <description>&lt;P&gt;...or &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/p0jp1ob4onbqign1st9ui61xybvr.htm" target="_self"&gt;Proc Export&lt;/A&gt; or macro &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lebaseutilref/n0yo3bszlrh0byn1j4fxh4ndei8u.htm" target="_self"&gt;%ds2csv&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 22:27:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845218#M36793</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-11-18T22:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert sas dataset file to TXT file. Thanks.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845223#M36795</link>
      <description>&lt;P&gt;With a couple of ways to create CSV mentioned it may be time to ask "what flavor of text file?" Other than CSV (comman separated values) there are other characters used to separate each value. Common choices are tab and pipe (|) characters, less frequently colons or semicolons. Sometimes multiple characters.&lt;/P&gt;
&lt;P&gt;Or maybe fixed width where each column (variable) has text start in the some character position.&lt;/P&gt;
&lt;P&gt;Or maybe something less common like Named output where you indicate a variable name followed by an = and the value, which would include quotes when there are spaces: somevar="This a named value"&lt;/P&gt;
&lt;P&gt;Or perhaps other specific text file formats like JSON, XML or similar.&lt;/P&gt;
&lt;P&gt;Or even a report layout?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 22:49:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845223#M36795</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-11-18T22:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert sas dataset file to TXT file. Thanks.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845237#M36798</link>
      <description>&lt;P&gt;What's the reason for converting to a text file? If we knew what you are planning to use them for we can offer more informed advice.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Nov 2022 23:41:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-sas-dataset-file-to-TXT-file-Thanks/m-p/845237#M36798</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-11-20T23:41:55Z</dc:date>
    </item>
  </channel>
</rss>

