<?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: SAS ODS in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404733#M19625</link>
    <description>&lt;P&gt;Hi Ballaardw&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your post .However this can be achieve by ODS LISTING . Below mentation code works for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS NORESULTS;&lt;/P&gt;&lt;P&gt;ODS LISTING FILE "FILE.TXT";&lt;/P&gt;&lt;P&gt;PROC PRINT DATA=TEST;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE;&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;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Oct 2017 10:31:45 GMT</pubDate>
    <dc:creator>singhsahab</dc:creator>
    <dc:date>2017-10-17T10:31:45Z</dc:date>
    <item>
      <title>SAS ODS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404368#M19617</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does it possible to export the sas dataset in .txt (text format) by using SAS ODS ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance !!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 04:52:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404368#M19617</guid>
      <dc:creator>singhsahab</dc:creator>
      <dc:date>2017-10-16T04:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ODS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404372#M19618</link>
      <description>&lt;P&gt;ODS CSV will create a CSV file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS LISTING, the original SAS output can also be directed to a text file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A data _null_ step can create text files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc Export can create txt files as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that you’ll lose graphs in a text file.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 05:37:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404372#M19618</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-16T05:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ODS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404410#M19619</link>
      <description>&lt;P&gt;Nope.&amp;nbsp; ODS is the destinations for output, it is not an output procedure in itself.&amp;nbsp; For that you would need to generate output, generally using output procedures such as proc report, print, tabulate, data step.&amp;nbsp; You can also select various objects from certain procedures, and proc sql without a create table automatically creates some output, but generally ods target set and then proc your data out to that destination.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 09:32:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404410#M19619</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-16T09:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ODS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404466#M19620</link>
      <description>&lt;P&gt;I don't really believe there is any actual "standard" TXT file format. Some "text" files use tab characters for delimiters, others don't. Some are fixed column.&lt;/P&gt;
&lt;P&gt;So ODS would tend to have a bit of a moving target.&lt;/P&gt;
&lt;P&gt;You may want to provide a short example of some example data and what you want your "text" file to look like so we can make specific suggestions.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 14:34:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404466#M19620</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-10-16T14:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ODS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404733#M19625</link>
      <description>&lt;P&gt;Hi Ballaardw&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your post .However this can be achieve by ODS LISTING . Below mentation code works for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS NORESULTS;&lt;/P&gt;&lt;P&gt;ODS LISTING FILE "FILE.TXT";&lt;/P&gt;&lt;P&gt;PROC PRINT DATA=TEST;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 10:31:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/404733#M19625</guid>
      <dc:creator>singhsahab</dc:creator>
      <dc:date>2017-10-17T10:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ODS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/488792#M21531</link>
      <description>&lt;P&gt;&lt;A href="http://sascertified.blogspot.com/p/sas-ods.html" target="_blank"&gt;&lt;STRONG&gt;ODS stands&lt;/STRONG&gt;&lt;/A&gt; for output delivery system. It is mostly used to format the output data of a SAS program to nice reports which are good to look at and understand. That also helps sharing the output with other platforms and soft wares.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Aug 2018 07:18:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS/m-p/488792#M21531</guid>
      <dc:creator>Rascon</dc:creator>
      <dc:date>2018-08-27T07:18:41Z</dc:date>
    </item>
  </channel>
</rss>

