<?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 ods html text in SAS 9.4 in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299710#M16956</link>
    <description>&lt;P&gt;&amp;nbsp;Does the ODS go before or after a libname?&lt;/P&gt;</description>
    <pubDate>Tue, 20 Sep 2016 23:45:39 GMT</pubDate>
    <dc:creator>aweaver</dc:creator>
    <dc:date>2016-09-20T23:45:39Z</dc:date>
    <item>
      <title>ods html text in SAS 9.4</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299710#M16956</link>
      <description>&lt;P&gt;&amp;nbsp;Does the ODS go before or after a libname?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 23:45:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299710#M16956</guid>
      <dc:creator>aweaver</dc:creator>
      <dc:date>2016-09-20T23:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: ods html text in SAS 9.4</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299711#M16957</link>
      <description>&lt;P&gt;LIBNAME and ODS are declarative statements and independent.&lt;/P&gt;&lt;P&gt;You can use them in any order.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Usually I prefer to declare all libnames on start of my&amp;nbsp;program&lt;/P&gt;&lt;P&gt;while ODS I preffer to to code starting the output session.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 23:57:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299711#M16957</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-20T23:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: ods html text in SAS 9.4</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299712#M16958</link>
      <description>&lt;P&gt;Hi -- does the ODS what??? There are a variety of statements:&lt;BR /&gt;&lt;BR /&gt;ODS PROCTITLE;&lt;BR /&gt;ODS RESULTS;&lt;BR /&gt;ODS OUTPUT;&lt;BR /&gt;ODS HTML file=...;&lt;BR /&gt;ODS HTML TEXT=...;&lt;BR /&gt;ODS RTF file=...;&lt;BR /&gt;ODS PDF file= ....;&lt;BR /&gt;etc, etc, etc. &lt;BR /&gt;&lt;BR /&gt;Your question title speaks of using ODS HTML text. What code have you tried and how are the results you're getting either satisfactory or unsatisfactory.&lt;BR /&gt;&lt;BR /&gt;Typically, your LIBNAME statement is placed at the TOP of your program when the program starts so that you immediately "plug" SAS into the location of the data. So, theoretically, something like this is a good pattern to follow.&lt;BR /&gt;&lt;BR /&gt;cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;** model statements;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mystuff 'C:\class\SAS\ecprg193';

ods html file='c:\temp\myoutput.html' style=htmlblue;

ods html text='This is at the top of the table';

proc print data=mystuff.customer(obs=10);
run;

ods html close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Sep 2016 00:01:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299712#M16958</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-09-21T00:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: ods html text in SAS 9.4</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299718#M16959</link>
      <description>Thank you so much this helps a ton!&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Sep 2016 00:57:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299718#M16959</guid>
      <dc:creator>aweaver</dc:creator>
      <dc:date>2016-09-21T00:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: ods html text in SAS 9.4</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299731#M16960</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/104445"&gt;@aweaver﻿&lt;/a&gt;&amp;nbsp;Please mark the question as Solved if you have your answer. Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2016 03:01:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-text-in-SAS-9-4/m-p/299731#M16960</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-09-21T03:01:10Z</dc:date>
    </item>
  </channel>
</rss>

