<?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, MS word table in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/ods-rtf-MS-word-table/m-p/540703#M7250</link>
    <description>&lt;P&gt;First lets clarify semantics.&amp;nbsp; RTF = Rich Text Format, which is a text file with some markup which describe the document.&amp;nbsp; MS Word is not RTF, however it can parse and display RTF, so in this case Word is the Renderer - this is important when thinking about file formats and how they are used as one Renderer may display data differently.&lt;/P&gt;
&lt;P&gt;Now your issue with the output splitting, there are numerous ways to increase the space available and change formatting to get it on one table.&amp;nbsp; It depends on your requirements, however bear in mind that a page is only so big and can hold only so much.&lt;/P&gt;
&lt;P&gt;to start with you could make the page landscape:&lt;/P&gt;
&lt;PRE&gt;ods orientation=landscape;

... your report code&lt;/PRE&gt;
&lt;P&gt;Second you can modify the style you use to create the output - style templates describe fonts, sizes etc. for the output:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/65308/HTML/default/viewer.htm#n0we09dlwj2ef1n1fugcur7vn1ck.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/65308/HTML/default/viewer.htm#n0we09dlwj2ef1n1fugcur7vn1ck.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Third, if you are using proc report then you can set the width of columns, wrap headers (and text) to allow more room.&amp;nbsp; E.g.&lt;/P&gt;
&lt;PRE&gt;proc report data=... nowd split="*";
  columns _all_;
  define subjectnr / "Subj.*Nr." style={cellwidth=1cm};
  ...
run;&lt;/PRE&gt;
&lt;P&gt;So in the style statement (of which you can set all style elements) I set the column width to be 1cm and wrap the heading splitting on the break char *.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From that yu should be able to alter your output to look pretty much anyway you like.&amp;nbsp; Style templates (and graph templates) are very powerful when you get used to them.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Mar 2019 08:58:20 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2019-03-06T08:58:20Z</dc:date>
    <item>
      <title>ods rtf, MS word table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ods-rtf-MS-word-table/m-p/540687#M7247</link>
      <description>&lt;P&gt;Hello! everybody!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I make MS word table, using&amp;nbsp; &lt;STRONG&gt;ods rtf &lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But my data set have many columns, so the table of MS word is the table divided two!!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27695i06AA9936B08CDEE9/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.JPG" alt="1.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27694i24677E8D23FF18EC/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.JPG" alt="2.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It does not matter if the letter is small. Just want to make the table one!!!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please, Help me!!!!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2019 08:27:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ods-rtf-MS-word-table/m-p/540687#M7247</guid>
      <dc:creator>J_hoon</dc:creator>
      <dc:date>2019-03-06T08:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: ods rtf, MS word table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ods-rtf-MS-word-table/m-p/540703#M7250</link>
      <description>&lt;P&gt;First lets clarify semantics.&amp;nbsp; RTF = Rich Text Format, which is a text file with some markup which describe the document.&amp;nbsp; MS Word is not RTF, however it can parse and display RTF, so in this case Word is the Renderer - this is important when thinking about file formats and how they are used as one Renderer may display data differently.&lt;/P&gt;
&lt;P&gt;Now your issue with the output splitting, there are numerous ways to increase the space available and change formatting to get it on one table.&amp;nbsp; It depends on your requirements, however bear in mind that a page is only so big and can hold only so much.&lt;/P&gt;
&lt;P&gt;to start with you could make the page landscape:&lt;/P&gt;
&lt;PRE&gt;ods orientation=landscape;

... your report code&lt;/PRE&gt;
&lt;P&gt;Second you can modify the style you use to create the output - style templates describe fonts, sizes etc. for the output:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/65308/HTML/default/viewer.htm#n0we09dlwj2ef1n1fugcur7vn1ck.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/65308/HTML/default/viewer.htm#n0we09dlwj2ef1n1fugcur7vn1ck.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Third, if you are using proc report then you can set the width of columns, wrap headers (and text) to allow more room.&amp;nbsp; E.g.&lt;/P&gt;
&lt;PRE&gt;proc report data=... nowd split="*";
  columns _all_;
  define subjectnr / "Subj.*Nr." style={cellwidth=1cm};
  ...
run;&lt;/PRE&gt;
&lt;P&gt;So in the style statement (of which you can set all style elements) I set the column width to be 1cm and wrap the heading splitting on the break char *.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From that yu should be able to alter your output to look pretty much anyway you like.&amp;nbsp; Style templates (and graph templates) are very powerful when you get used to them.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2019 08:58:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ods-rtf-MS-word-table/m-p/540703#M7250</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-03-06T08:58:20Z</dc:date>
    </item>
  </channel>
</rss>

