<?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 how to repeat group value for next page proc report rtf in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-repeat-group-value-for-next-page-proc-report-rtf/m-p/938234#M368563</link>
    <description>&lt;P&gt;I have one dataset with two variables&amp;nbsp; country,status. Here country is group variable and status is result variable need to print in proc report for rtf file..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods rtf file='path';&lt;/P&gt;
&lt;P&gt;proc report data=source ;&lt;/P&gt;
&lt;P&gt;column country status ;&lt;/P&gt;
&lt;P&gt;define counry/group;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;ods rtf close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Question:&lt;/P&gt;
&lt;P&gt;status variable having more than 1000 letters . no able to fit into single page&amp;nbsp; text is continuing to next page like overflow but group value not coming for next page how to display group value if other variable values/text overflow not continuing to next page.&lt;/P&gt;</description>
    <pubDate>Mon, 05 Aug 2024 14:30:54 GMT</pubDate>
    <dc:creator>thanikondharish</dc:creator>
    <dc:date>2024-08-05T14:30:54Z</dc:date>
    <item>
      <title>how to repeat group value for next page proc report rtf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-repeat-group-value-for-next-page-proc-report-rtf/m-p/938234#M368563</link>
      <description>&lt;P&gt;I have one dataset with two variables&amp;nbsp; country,status. Here country is group variable and status is result variable need to print in proc report for rtf file..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods rtf file='path';&lt;/P&gt;
&lt;P&gt;proc report data=source ;&lt;/P&gt;
&lt;P&gt;column country status ;&lt;/P&gt;
&lt;P&gt;define counry/group;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;ods rtf close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Question:&lt;/P&gt;
&lt;P&gt;status variable having more than 1000 letters . no able to fit into single page&amp;nbsp; text is continuing to next page like overflow but group value not coming for next page how to display group value if other variable values/text overflow not continuing to next page.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 14:30:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-repeat-group-value-for-next-page-proc-report-rtf/m-p/938234#M368563</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2024-08-05T14:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to repeat group value for next page proc report rtf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-repeat-group-value-for-next-page-proc-report-rtf/m-p/938312#M368572</link>
      <description>&lt;P&gt;Try "ods tagsets.rtf + spanrows" :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
do x='A' ,'B';
 do y=1 to 40;
  output;
 end;
end;
run;

ods tagsets.rtf file="c:\temp\example.rtf" startpage=no  ;
proc report data=x nowd spanrows;
column x y;;
define x/group;
define y/display;
run;
ods tagsets.rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1722912292159.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/99053i1DDA13925D2AC82F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1722912292159.png" alt="Ksharp_0-1722912292159.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 02:44:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-repeat-group-value-for-next-page-proc-report-rtf/m-p/938312#M368572</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-08-06T02:44:59Z</dc:date>
    </item>
  </channel>
</rss>

