<?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: Dispatching outputs to destinations in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672478#M202122</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp;Your paper contains this table&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 886px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47685i004BE57C65906468/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Is there a somewhat comprehensive list of the various customisation options, at least for the first three categories?&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jul 2020 09:31:51 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2020-07-27T09:31:51Z</dc:date>
    <item>
      <title>Dispatching outputs to destinations</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672295#M202033</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Say there are two ODS destinations open, and I run three proc prints.&lt;/P&gt;
&lt;P&gt;I want the first one to go to the HTML and RTF documents, the second one to go to the HTML document only, and the third one to the RTF document only.&lt;/P&gt;
&lt;P&gt;Is there a way to do this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS&lt;/P&gt;
&lt;P&gt;The reason this needs to to done is that the (same) data contains HTML formatting in one case (like &lt;STRONG&gt;&amp;lt;br&amp;gt;&lt;/STRONG&gt;), and RTF formatting for the other case (like&lt;STRONG&gt;&amp;nbsp;\line&lt;/STRONG&gt;).&lt;/P&gt;
&lt;P&gt;Maybe there is a better way than embedding these formatting words (and use style&amp;nbsp;&lt;STRONG&gt;protectspecialchars=off&lt;/STRONG&gt; ) in otherwise identical data?&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jul 2020 11:27:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672295#M202033</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-07-25T11:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatching outputs to destinations</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672298#M202036</link>
      <description>Not sure if this could work.&lt;BR /&gt;&lt;BR /&gt;ods html file=.........&lt;BR /&gt;ods rtf file=.....&lt;BR /&gt;proc print.....&lt;BR /&gt;&lt;BR /&gt;ods html close;&lt;BR /&gt;proc print;&lt;BR /&gt;&lt;BR /&gt;ods html ;&lt;BR /&gt;ods rtf close;&lt;BR /&gt;proc print;</description>
      <pubDate>Sat, 25 Jul 2020 11:41:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672298#M202036</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-07-25T11:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatching outputs to destinations</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672299#M202037</link>
      <description>&lt;P&gt;Might be a good reason for a ODS &amp;lt;destination&amp;gt; SUSPEND statement.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jul 2020 12:27:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672299#M202037</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-25T12:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatching outputs to destinations</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672312#M202041</link>
      <description>&lt;P&gt;For HTML or HTML5, you could use &lt;A href="https://documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p0hcv8gpxqebnpn1is52we2enltx.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;the NO_BOTTOM_MATTER and NO_TOP_MATTER options&lt;/A&gt;, plus FILENAME with append options, to "pause" and "continue" output to an HTML destination.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And then &lt;A href="https://documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p1vvsv8ucnjzjnn1wq5wrlp74mdb.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;there is SELECT and EXCLUDE options&lt;/A&gt; on these ODS destinations, to selectively decide what to output where.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jul 2020 13:39:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672312#M202041</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2020-07-25T13:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatching outputs to destinations</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672372#M202063</link>
      <description>&lt;P&gt;Thanks Chris&lt;/P&gt;
&lt;P&gt;I thought SELECT was only to manage documents.&lt;/P&gt;
&lt;P&gt;Adding lines such as&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ods rtf select ALL;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ods html exclude ALL;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;seems to do the trick!&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jul 2020 05:57:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672372#M202063</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-07-26T05:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatching outputs to destinations</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672431#M202106</link>
      <description>&lt;P&gt;I also found this paper (by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp; of course) about doing this in a smarter manner.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/099-2007.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/099-2007.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 01:05:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672431#M202106</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-07-27T01:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatching outputs to destinations</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672478#M202122</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp;Your paper contains this table&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 886px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47685i004BE57C65906468/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Is there a somewhat comprehensive list of the various customisation options, at least for the first three categories?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 09:31:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672478#M202122</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-07-27T09:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatching outputs to destinations</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672565#M202142</link>
      <description>Hi:&lt;BR /&gt;  That paper was showcasing the older style ^S of ODS ESCAPECHAR. The ability to do inline-formatting went through some changes in SAS 9.2 and at the end of my paper, I showed some comparisons between the original syntax and the newer ^{style...} syntax.&lt;BR /&gt;  Line breaks and non-breaking spaces still work although with slightly different syntax. Line wraps went away. Regarding a "comprehensive list" styles and functions (like dagger and page x of y), you should look in the documentation. This web site: &lt;A href="https://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p11xia2ltavr8ln17srq8vn4rnqc.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p11xia2ltavr8ln17srq8vn4rnqc.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt; has a lovely list of all the functions in the current implementation of ODS ESCAPECHAR. And in addition to DAGGER, which was one of the original functions, there's the wonderful new UNICODE function, as well as BOLD and ITALIC, which simplify how you get bold and italic in text.&lt;BR /&gt;  &lt;BR /&gt;  For the style attributes that you specify when you use STYLE with ODS ESCAPECHAR, you have to refer to this documentation table: &lt;A href="https://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=n0otdo2g12obp3n0zmnghcn7p4vu.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=n0otdo2g12obp3n0zmnghcn7p4vu.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt; and in general understand how style attributes would in general before you start using them in ODS ESCAPECHAR.&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 27 Jul 2020 15:00:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dispatching-outputs-to-destinations/m-p/672565#M202142</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-07-27T15:00:42Z</dc:date>
    </item>
  </channel>
</rss>

