<?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: Ods rtf proc tabulate - how to get continued message for multipages tables? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79424#M8893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Usually, user supplied text is left justified by default. Sometimes ODS ESCAPECHAR will work with ODS TEXT=. If you run into an instance where ODS TEXT= does not work with ODS ESCAPECHAR method of justification, then you may need to alter the STYLE template used for your destination, as described here: &lt;A href="http://support.sas.com/resources/papers/proceedings10/033-2010.pdf"&gt;http://support.sas.com/resources/papers/proceedings10/033-2010.pdf&lt;/A&gt; on pages 11 and 12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Nov 2012 03:18:53 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2012-11-29T03:18:53Z</dc:date>
    <item>
      <title>Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79416#M8885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using ods rtf proc tabulate to create a table. How to get continued message for multipages tables in RTF?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Clara &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2012 22:46:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79416#M8885</guid>
      <dc:creator>Clara</dc:creator>
      <dc:date>2012-11-24T22:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79417#M8886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; If you use the newer TAGSETS.RTF destination, you get the word Continued automatically if a table breaks across pages. The example below makes data that will split across 2 pages. The TAGSETS.RTF output file has the Continued string at the bottom of page 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;data cats;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;do Biggrp = 'a1', 'b1', 'c1', 'd1';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; do Cat = 'aaa', 'bbb', 'ccc', 'ddd';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do Subcat = 'xx', 'yy', 'zz';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do Gender = 'F', 'M';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do Value = 1 to 100;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ranuni(value) le .5 then output;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods listing close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods rtf file='c:\temp\orig_no_continued.rtf';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods tagsets.rtf file='c:\temp\new_with_continued.rtf';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; proc tabulate data=cats f=comma10.;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; class biggrp cat subcat gender;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var value;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; table biggrp*cat*subcat all,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gender*value*sum=' ' all*value*sum=' ';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; keylabel all='Total';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2012 23:00:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79417#M8886</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-11-24T23:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79418#M8887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use a lot of options for ods rtf so that my tables look nice. All that is lost when I use tagsets.rtf. Is there any solution to get the countinued message with ods rtf?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2012 09:19:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79418#M8887</guid>
      <dc:creator>Clara</dc:creator>
      <dc:date>2012-11-25T09:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79419#M8888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Since you didn't show your code, I did not realize that there were other options you were using. What options are you using with ODS RTF that do not work with TAGSETS.RTF? It could be that an option with ODS RTF got moved to a suboption with TAGSETS.RTF. You can see the list of suboptions that can be used with TAGSETS.RTF by using the doc='Help' suboption, as shown below:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods tagsets.rtf file='c:\temp\new_with_continued.rtf'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; options(contents='yes' toc_data='yes' doc='Help');&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; ... code ...&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then, look in your SAS log to see the suboptions that you can use with TAGSETS.RTF. For example, the CONTENTS=YES option with ODS RTF becomes the CONTENTS='YES' suboption with TAGSETS.RTF. On the other hand, if you are using STYLE= overrides in your TABULATE code, those should work with TAGSETS.RTF as well as with ODS RTF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Otherwise, there are some options that are not necessary when you use TAGSETS.RTF. For example, BODYTITLE, which was designed for ODS RTF, is not needed with ODS TAGSETS.RTF because your SAS title automatically goes into the body of the document (not in the header) with TAGSETS.RTF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; The primary difference between ODS RTF and ODS TAGSETS.RTF is exactly the fact that ODS TAGSETS.RTF does do vertical measurement -- so it knows when to put the Continued text string -- whoever opens the file will always see the Continued text string at the bottom of a page. But, for ODS RTF, two different people could receive the same document; each person could change their Word margins after opening the RTF file and each table would split in a different place. So there's not a way with ODS RTF to put a Continued text string. Without seeing an example of what you mean or understanding what options you mean when you say that a "lot of options" don't work, it's hard to provide more helpful advice. You might consider opening a track with Tech Support for more specific help on this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2012 17:54:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79419#M8888</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-11-25T17:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79420#M8889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use for example&amp;nbsp; \R/RTF"\line " in my formats to get a blank line. How can I obtain the same with tagsets.rtf?&lt;/P&gt;&lt;P&gt;How could I send you two rtf outputs (with ods rtf and ods tagesets.rtf) of the same table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Clara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2012 18:22:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79420#M8889</guid>
      <dc:creator>Clara</dc:creator>
      <dc:date>2012-11-25T18:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79421#M8890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Oh, I see. You are inserting "raw" RTF control strings into your output. I hardly use RAW text insertion anymore. I use ODS ESCAPECHAR and the "newline" functionality that is built into ODS. That way, I can create output that gets a line feed whether I am generating RTF or PDF or HTML output. The "raw" capability only works with HTML and RTF, so it is limiting. I do use RAW text insertion sometimes, if there is an RTF control string that ODS does not have an equivalent for&amp;nbsp; (like \tab) -- but ODS has a newline capability, so I just don't use the RTF \line anymore.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp; However, when I run this sample program (in SAS 9.3) using either ODS RTF or ODS TAGSETS.RTF, I do get the line feed in either file using RAW text insertion(see screenshot) and with ODS ESCAPECHAR. So it is a puzzle why you are not getting a line feed. That would be a question for Tech Support. But, as I said, I prefer to use straight ODS ESCAPECHAR and the NEWLINE escapechar function because I can get line feeds with PDF.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; My sample program did not use user-defined formats, but I assume that the format would work the same.&lt;BR /&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data class;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; length newvar newvar2 $60;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; set sashelp.class;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; where age le 12;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; newvar = catx('^{newline 1}', name,'xxx yyy zzz',sex);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; newvar2 ="Something" ||&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "^R/RTF'\line' " ||"Else";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;options nodate nonumber;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;** Using ODS ESCAPECHAR for inserting line feeds;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods listing close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf file='c:\temp\useline.pdf';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods rtf file='c:\temp\orig_useline.rtf';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.rtf file='c:\temp\new_useline2.rtf';&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods escapechar='^';&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title "My Title ^{newline 1}Using SAS version &amp;amp;sysvlong4";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; proc report data=class nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column newvar newvar2 name age sex;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define newvar /display "uses Escapechar";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define newvar2 / display "uses RAW text insertion"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={protectspecialchars=off};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define name / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute before _page_ /&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style={just=left font_weight=bold};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; line 'Twas brillig and the slithy toves ^{newline 1}Did gyre and gimble in the wabe';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11708i74840657ECD8011B/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="insert_line_feed.png" title="insert_line_feed.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2012 20:49:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79421#M8890</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-11-25T20:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79422#M8891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Cynthia, &lt;SPAN id="result_box" lang="en"&gt;&lt;SPAN class="hps"&gt;it&lt;/SPAN&gt; &lt;SPAN class="hps alt-edited"&gt;was very helpful&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;One more question:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="hps"&gt;why&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;is&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;text&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;in &lt;/SPAN&gt;&lt;SPAN class="hps"&gt;ods&lt;/SPAN&gt; rtf &lt;SPAN class="hps"&gt;always&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;left&lt;/SPAN&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;ODS&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;ESCAPECHAR&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'^'&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;ODS&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;RTF&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;FILE&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"C:\temp\text.rtf"&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;bodytitle&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;ods&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;rtf&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;text&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"^S={just=left}(continued)"&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;ods&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;rtf&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;text&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"^S={just=center}(continued)"&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;ODS&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;RTF&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;CLOSE&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;How can&lt;/SPAN&gt; I &lt;SPAN class="hps"&gt;change this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="hps"&gt;Clara&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 20:32:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79422#M8891</guid>
      <dc:creator>Clara</dc:creator>
      <dc:date>2012-11-28T20:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79423#M8892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe the JUST instruction works with the length of the printed line not the page width. See what happens with&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ods rtf text="^S={just=left}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (continued)"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods rtf text="^S={just=center}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (continued)"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods rtf text="^S={just=right}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (continued)";&lt;/P&gt;&lt;P&gt;Notice that the ruler in Word, if using that program to look at results, will indicate the line lengths are about the same and the text is justified within that length.&lt;/P&gt;&lt;P&gt;(watch out for editors stripping multiple spaces!)&lt;/P&gt;&lt;P&gt;Another option you may want to use would be&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ods rtf text="^S={just=left leftmargin=2.5in}(continued)";&lt;/P&gt;&lt;P&gt;or set other value for how many inches to indent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 21:09:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79423#M8892</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-11-28T21:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Ods rtf proc tabulate - how to get continued message for multipages tables?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79424#M8893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Usually, user supplied text is left justified by default. Sometimes ODS ESCAPECHAR will work with ODS TEXT=. If you run into an instance where ODS TEXT= does not work with ODS ESCAPECHAR method of justification, then you may need to alter the STYLE template used for your destination, as described here: &lt;A href="http://support.sas.com/resources/papers/proceedings10/033-2010.pdf"&gt;http://support.sas.com/resources/papers/proceedings10/033-2010.pdf&lt;/A&gt; on pages 11 and 12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 03:18:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-rtf-proc-tabulate-how-to-get-continued-message-for/m-p/79424#M8893</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-11-29T03:18:53Z</dc:date>
    </item>
  </channel>
</rss>

