<?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: How to split a PROC REPORT table into 2+ ODS RTF pages? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815429#M25820</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; With a break after, you will almost always get the last RBREAK on a separate page because the PGBRK variable is not relevant to a break line that PROC REPORT is inserting based on the presence of an RBREAK statement. The BREAK AFTER PGBRK forced the break after the last value of PGBRK on the report and then there was no other place for the RBREAK to go.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; So I made a fake RBRK variable as well as a PGBRK variable. I don't open Excel files, so I used the DATA step that was so helpfully posted for testing:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1653666860453.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71817i2E2A5EDB2E115D60/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1653666860453.png" alt="Cynthia_sas_0-1653666860453.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Then I did some cosmetic tweaks to the code. First, I got rid of all the distractors -- the macro variables were just distracting to me, so I hardcoded everything to make it easier to read. Also, the WIDTH in percents just didn't make sense to me because some of the widths were on NOPRINT items. So I took those off. The FONTSIZE as a relative number of 2 was just forcing ODS to convert the relative number to a PT size (for RTF or PDF), so I just specified a PT size and moved the FONTSIZE override into the PROC REPORT statement so it wouldn't have to be on every DEFINE statement. The benefit of this was simplifying the DEFINE statements. Not sure why you need VALLABEL as an alias for QUIZ since all you do is use it to calculate a value for DUMROW, which you could just as well do with QUIZ.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; When I do PROC REPORT code, I like to have all my DEFINE statements first, followed by all the COMPUTE statements. The order of the statements doesn't matter, but behind the scenes, PROC REPORT collects all the COMPUTE blocks so it can executes them at the proper time based on the COLUMN statement. Since I know that PROC REPORT does this pre-processing, I like to have all my COMPUTE statements organized after all the DEFINES. It didn't make any difference but it's my preference, so that's what I did.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Changing the PGBRK to a BREAK BEFORE PGBRK allowed your TOTAL row to be at the bottom without the issue you were having before.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I think changing the rows based on the calculate COUNT is a bit fiddly. Using BREAK BEFORE changed the value of COUNT, so that the first data row was 2. I fiddled with the logic, but honestly, you've only got 2 rows per page, which seems like it causes a wasted huge white space on such large pages in RTF ( .5 in at top and bottom makes for a 10" page area on a portrait page) and I'm not sure that fiddling with the background colors is worth it.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's my final attempt -- I think I manged to highlight most of the major things I changed.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_1-1653667058843.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71818i9C9E288BB006C695/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_1-1653667058843.png" alt="Cynthia_sas_1-1653667058843.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 27 May 2022 16:00:08 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2022-05-27T16:00:08Z</dc:date>
    <item>
      <title>How to split a PROC REPORT table into 2+ ODS RTF pages?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815305#M25817</link>
      <description>&lt;P&gt;Input:&lt;/P&gt;
&lt;P&gt;Student Quiz Grade&lt;BR /&gt;Joe 1 C&lt;BR /&gt;Joe 2 A&lt;BR /&gt;Joe 3 A&lt;BR /&gt;Sue 1 A&lt;BR /&gt;Sue 2 B&lt;BR /&gt;Sue 3 B&lt;BR /&gt;Bob 1 C&lt;BR /&gt;Bob 2 B&lt;BR /&gt;Bob 3 C&lt;BR /&gt;Deb 1 B&lt;BR /&gt;Deb 2 B&lt;BR /&gt;Deb 3 A&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%let dir=C:\JohnDoe;

proc import datafile="&amp;amp;dir\grades.xlsx"
			out=grades
			replace;
run;

ODS LISTING CLOSE;

OPTIONS NODATE
		NONUMBER
		TOPMARGIN	=0.5IN 
		LEFTMARGIN	=0.5IN
		RIGHTMARGIN =0.5IN
		BOTTOMMARGIN=0.5IN;

/*%let ftype=PDF;*/
%let ftype=RTF;
/*%let fstyle=&amp;amp;ftype;*/
%let fstyle=tagsets.&amp;amp;ftype;

ods noptitle;
ods &amp;amp;fstyle FILE = "&amp;amp;dir\test.&amp;amp;ftype" STYLE=BARRETTSBLUE options(doc='Help' tables_off='USERTEXT');

ods proclabel='Frequencies';

ODS ESCAPECHAR = '^';

ODS &amp;amp;fstyle TEXT = "^{sectd}^{STYLE[FONTSIZE=10.5pt JUST=L fontweight=bold]QUIZ}";
ODS &amp;amp;fstyle TEXT = " ";

PROC REPORT DATA = grades MISSING STYLE(REPORT)=[width=100% BACKGROUND=WHITE BORDERCOLOR=WHITE BORDERWIDTH=0 ASIS=OFF FONTSIZE=2] NOWD contents="quiz: &amp;amp;vlabel";

COLUMN quiz quiz=vallabel DUMROW N PCTN;

COMPUTE quiz;
	COUNT+1;
/*	IF (MOD(COUNT,2)) THEN DO;*/
/*	CALL DEFINE (_ROW_, 'STYLE', 'STYLE=[BACKGROUND=WHITE]');*/
/*	END;*/
  if (mod(count,2))=0 then call define(_row_, 'STYLE', 'STYLE=[BACKGROUND=WHITE]');
ENDCOMP;

DEFINE quiz	/"Value" GROUP ORDER=INTERNAL	STYLE(COLUMN)=[WIDTH=10% JUST=C FONTSIZE=2]	STYLE(HEADER)=[JUST=C FONTSIZE=2]	;
DEFINE vallabel	/"Label" GROUP ID				STYLE(COLUMN)=[WIDTH=60% JUST=L FONTSIZE=2]	STYLE(HEADER)=[JUST=L FONTSIZE=2] format=1.	NOPRINT	;
DEFINE DUMROW	/COMPUTED "Label"				STYLE(COLUMN)=[WIDTH=60% JUST=L FONTSIZE=2]	STYLE(HEADER)=[JUST=L FONTSIZE=2]	width=65;
DEFINE N 		/"Frequency"			STYLE(COLUMN)=[WIDTH=15% JUST=R FONTSIZE=2]	STYLE(HEADER)=[JUST=R FONTSIZE=2]	FORMAT=COMMA12.			;
DEFINE PCTN		/"%"							STYLE(COLUMN)=[WIDTH=10% JUST=R FONTSIZE=2]	STYLE(HEADER)=[JUST=R FONTSIZE=2]	FORMAT=PERCENT7.1		;

COMPUTE DUMROW /CHAR LENGTH = 65;
	IF _BREAK_="_RBREAK_" THEN DO DUMROW = 'Total';
	END;
	ELSE DUMROW=PUT(vallabel, 1.);
	IF DUMROW = 'Total' THEN CALL DEFINE (_ROW_, 'STYLE', "STYLE=[BACKGROUND=LIGHT GRAY FONTSTYLE=ITALIC FONTSIZE=2]");
ENDCOMP;

RBREAK AFTER / SUMMARIZE;

RUN;

ODS &amp;amp;fstyle TEXT = " ";
ODS &amp;amp;fstyle TEXT = "AND THAT'S A WRAP FOR QUIZZES";

quit;
title;
ODS _all_ CLOSE;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What would I need to tweak in my code to make a PROC REPORT table split from this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BigPete_0-1653595218809.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71802iF2CA36B8D6454D42/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BigPete_0-1653595218809.png" alt="BigPete_0-1653595218809.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;into multiple pages like these?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BigPete_1-1653595272064.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71803iF1CCE31C78A460DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BigPete_1-1653595272064.png" alt="BigPete_1-1653595272064.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;DIV id="tinyMceEditorBigPete_2" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BigPete_3-1653595368073.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71805i61A8F42466F08EF7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BigPete_3-1653595368073.png" alt="BigPete_3-1653595368073.png" /&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2022 20:05:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815305#M25817</guid>
      <dc:creator>BigPete</dc:creator>
      <dc:date>2022-05-26T20:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a PROC REPORT table into 2+ ODS RTF pages?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815316#M25818</link>
      <description>&lt;P&gt;See if this gets close. Note that the data set "example" did not have variables N or PCTN so i dropped them from the code.&lt;/P&gt;
&lt;PRE&gt;data have;
   input Student $ Quiz Grade $;
datalines;
Joe 1 C
Joe 2 A
Joe 3 A
Sue 1 A
Sue 2 B
Sue 3 B
Bob 1 C
Bob 2 B
Bob 3 C
Deb 1 B
Deb 2 B
Deb 3 A
;

ods rtf file="D:\Users\Owner\Documents\example.rtf";
PROC REPORT DATA = have  MISSING STYLE(REPORT)=[width=100% BACKGROUND=WHITE BORDERCOLOR=WHITE BORDERWIDTH=0 ASIS=OFF FONTSIZE=2] NOWD contents="quiz: &amp;amp;vlabel";

COLUMN quiz quiz=vallabel DUMROW ;

COMPUTE quiz;
	COUNT+1;
/*	IF (MOD(COUNT,2)) THEN DO;*/
/*	CALL DEFINE (_ROW_, 'STYLE', 'STYLE=[BACKGROUND=WHITE]');*/
/*	END;*/
  if (mod(count,2))=0 then call define(_row_, 'STYLE', 'STYLE=[BACKGROUND=WHITE]');
ENDCOMP;

DEFINE quiz	/"Value" GROUP  ORDER=INTERNAL	STYLE(COLUMN)=[WIDTH=10% JUST=C FONTSIZE=2]	STYLE(HEADER)=[JUST=C FONTSIZE=2]	;
DEFINE vallabel	/"Label" GROUP ID				STYLE(COLUMN)=[WIDTH=60% JUST=L FONTSIZE=2]	STYLE(HEADER)=[JUST=L FONTSIZE=2] format=1.	NOPRINT	;
DEFINE DUMROW	/COMPUTED "Label"				STYLE(COLUMN)=[WIDTH=60% JUST=L FONTSIZE=2]	STYLE(HEADER)=[JUST=L FONTSIZE=2]	width=65;

COMPUTE DUMROW /CHAR LENGTH = 65;
	IF _BREAK_="_RBREAK_" THEN DO DUMROW = 'Total';
	END;
	ELSE DUMROW=PUT(vallabel, 1.);
	IF DUMROW = 'Total' THEN CALL DEFINE (_ROW_, 'STYLE', "STYLE=[BACKGROUND=LIGHT GRAY FONTSTYLE=ITALIC FONTSIZE=2]");
ENDCOMP;

RBREAK AFTER / SUMMARIZE;
break after quiz/page;

RUN;

ods rtf close;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 May 2022 21:18:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815316#M25818</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-05-26T21:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a PROC REPORT table into 2+ ODS RTF pages?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815324#M25819</link>
      <description>&lt;P&gt;I think I found some clues from this posting:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-page-break/td-p/79140" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-page-break/td-p/79140&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%let dir=C:\Johnny;

proc import datafile="&amp;amp;dir\grades.xlsx"
			out=grades
			replace;
run;

data grades;
  set grades;
  pgbrk=ceil(divide(quiz,2));
run;

ODS LISTING CLOSE;

OPTIONS NODATE
		NONUMBER
		TOPMARGIN	=0.5IN 
		LEFTMARGIN	=0.5IN
		RIGHTMARGIN =0.5IN
		BOTTOMMARGIN=0.5IN;

/*%let ftype=PDF;*/
%let ftype=RTF;
/*%let fstyle=&amp;amp;ftype;*/
%let fstyle=tagsets.&amp;amp;ftype;

ods noptitle;
ods &amp;amp;fstyle FILE = "&amp;amp;dir\test.&amp;amp;ftype" STYLE=BARRETTSBLUE options(doc='Help' tables_off='USERTEXT');

ods proclabel='Frequencies';

ODS ESCAPECHAR = '^';

ODS &amp;amp;fstyle TEXT = "^{sectd}^{STYLE[FONTSIZE=10.5pt JUST=L fontweight=bold]QUIZ}";
ODS &amp;amp;fstyle TEXT = " ";

PROC REPORT DATA = grades MISSING STYLE(REPORT)=[width=100% BACKGROUND=WHITE BORDERCOLOR=WHITE BORDERWIDTH=0 ASIS=OFF FONTSIZE=2] NOWD contents="quiz";

COLUMN pgbrk quiz quiz=vallabel DUMROW N PCTN;

COMPUTE quiz;
  COUNT+1;
  if (mod(count,2))=0 then call define(_row_, 'STYLE', 'STYLE=[BACKGROUND=WHITE]');
ENDCOMP;

define pgbrk / group noprint;
DEFINE quiz	/"Value" GROUP ORDER=INTERNAL	STYLE(COLUMN)=[WIDTH=10% JUST=C FONTSIZE=2]	STYLE(HEADER)=[JUST=C FONTSIZE=2]	;
DEFINE vallabel	/"Label" GROUP ID				STYLE(COLUMN)=[WIDTH=60% JUST=L FONTSIZE=2]	STYLE(HEADER)=[JUST=L FONTSIZE=2] format=1.	NOPRINT	;
DEFINE DUMROW	/COMPUTED "Label"				STYLE(COLUMN)=[WIDTH=60% JUST=L FONTSIZE=2]	STYLE(HEADER)=[JUST=L FONTSIZE=2]	width=65;
DEFINE N 		/"Frequency"			STYLE(COLUMN)=[WIDTH=15% JUST=R FONTSIZE=2]	STYLE(HEADER)=[JUST=R FONTSIZE=2]	FORMAT=COMMA12.			;
DEFINE PCTN		/"%"							STYLE(COLUMN)=[WIDTH=10% JUST=R FONTSIZE=2]	STYLE(HEADER)=[JUST=R FONTSIZE=2]	FORMAT=PERCENT7.1		;

COMPUTE DUMROW /CHAR LENGTH = 65;
	IF _BREAK_="_RBREAK_" THEN DO DUMROW = 'Total';
	END;
	ELSE DUMROW=PUT(vallabel, 1.);
	IF DUMROW = 'Total' THEN CALL DEFINE (_ROW_, 'STYLE', "STYLE=[BACKGROUND=LIGHT GRAY FONTSTYLE=ITALIC FONTSIZE=2]");
ENDCOMP;

RBREAK AFTER / SUMMARIZE;
break after pgbrk / page;

RUN;

ODS &amp;amp;fstyle TEXT = " ";
ODS &amp;amp;fstyle TEXT = "AND THAT'S A WRAP FOR QUIZZES";

quit;
title;
ODS _all_ CLOSE;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The idea of creating a "page break" variable was a major clue. However it spat out the 'total' row and concluding texts into a separate page when I need to include them together with last page of summary contents. Any idea?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 01:30:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815324#M25819</guid>
      <dc:creator>BigPete</dc:creator>
      <dc:date>2022-05-27T01:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a PROC REPORT table into 2+ ODS RTF pages?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815429#M25820</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; With a break after, you will almost always get the last RBREAK on a separate page because the PGBRK variable is not relevant to a break line that PROC REPORT is inserting based on the presence of an RBREAK statement. The BREAK AFTER PGBRK forced the break after the last value of PGBRK on the report and then there was no other place for the RBREAK to go.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; So I made a fake RBRK variable as well as a PGBRK variable. I don't open Excel files, so I used the DATA step that was so helpfully posted for testing:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1653666860453.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71817i2E2A5EDB2E115D60/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1653666860453.png" alt="Cynthia_sas_0-1653666860453.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Then I did some cosmetic tweaks to the code. First, I got rid of all the distractors -- the macro variables were just distracting to me, so I hardcoded everything to make it easier to read. Also, the WIDTH in percents just didn't make sense to me because some of the widths were on NOPRINT items. So I took those off. The FONTSIZE as a relative number of 2 was just forcing ODS to convert the relative number to a PT size (for RTF or PDF), so I just specified a PT size and moved the FONTSIZE override into the PROC REPORT statement so it wouldn't have to be on every DEFINE statement. The benefit of this was simplifying the DEFINE statements. Not sure why you need VALLABEL as an alias for QUIZ since all you do is use it to calculate a value for DUMROW, which you could just as well do with QUIZ.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; When I do PROC REPORT code, I like to have all my DEFINE statements first, followed by all the COMPUTE statements. The order of the statements doesn't matter, but behind the scenes, PROC REPORT collects all the COMPUTE blocks so it can executes them at the proper time based on the COLUMN statement. Since I know that PROC REPORT does this pre-processing, I like to have all my COMPUTE statements organized after all the DEFINES. It didn't make any difference but it's my preference, so that's what I did.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Changing the PGBRK to a BREAK BEFORE PGBRK allowed your TOTAL row to be at the bottom without the issue you were having before.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I think changing the rows based on the calculate COUNT is a bit fiddly. Using BREAK BEFORE changed the value of COUNT, so that the first data row was 2. I fiddled with the logic, but honestly, you've only got 2 rows per page, which seems like it causes a wasted huge white space on such large pages in RTF ( .5 in at top and bottom makes for a 10" page area on a portrait page) and I'm not sure that fiddling with the background colors is worth it.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's my final attempt -- I think I manged to highlight most of the major things I changed.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_1-1653667058843.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71818i9C9E288BB006C695/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_1-1653667058843.png" alt="Cynthia_sas_1-1653667058843.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 16:00:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815429#M25820</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2022-05-27T16:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a PROC REPORT table into 2+ ODS RTF pages?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815512#M25821</link>
      <description>&lt;P&gt;Thanks Cynthia&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 22:12:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-split-a-PROC-REPORT-table-into-2-ODS-RTF-pages/m-p/815512#M25821</guid>
      <dc:creator>BigPete</dc:creator>
      <dc:date>2022-05-27T22:12:21Z</dc:date>
    </item>
  </channel>
</rss>

