<?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 BREAK AFTER /PAGE is not working with ODS TAGESETS.RTF when using ID option in DEFINE in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156759#M11856</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not getting expected results in RTF when I use the following combination PROC RPORT, DEFINE xxx/ID, BREAK AFTER xx/PAGE.&lt;/P&gt;&lt;P&gt;Could you please help me? I have attached expected result and original from SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example code:&lt;/P&gt;&lt;P&gt;data tclass;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set sashelp.class;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; name_=name; height_=height; age_=age; weight_=weight; sex_=sex;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pagenum=1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods noresults;&lt;BR /&gt;ods listing close;&lt;BR /&gt;ods tagsets.rtf file='C:\temp.rtf';&lt;BR /&gt;proc report data=tclass nowd;&lt;BR /&gt;column pagenum name sex age height weight name_ sex_ age_ height_ weight_;&lt;BR /&gt;define pagenum/display order noprint;&lt;BR /&gt;define name/display style(column)={cellwidth=20%};&lt;BR /&gt;define sex/display style(column)={cellwidth=20%} id page;&lt;BR /&gt;define age/display;&lt;BR /&gt;define height/display;&lt;BR /&gt;define weight/display style(column)={cellwidth=20%};&lt;BR /&gt;define name_/display;&lt;BR /&gt;define sex_/display;&lt;BR /&gt;define age_/display;&lt;BR /&gt;define height_/display;&lt;BR /&gt;define weight_/display;&lt;BR /&gt;break after pagenum/page;&lt;BR /&gt;run;&lt;BR /&gt;ods tagsets.rtf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Feb 2015 12:07:29 GMT</pubDate>
    <dc:creator>Rajaram</dc:creator>
    <dc:date>2015-02-06T12:07:29Z</dc:date>
    <item>
      <title>BREAK AFTER /PAGE is not working with ODS TAGESETS.RTF when using ID option in DEFINE</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156759#M11856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not getting expected results in RTF when I use the following combination PROC RPORT, DEFINE xxx/ID, BREAK AFTER xx/PAGE.&lt;/P&gt;&lt;P&gt;Could you please help me? I have attached expected result and original from SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example code:&lt;/P&gt;&lt;P&gt;data tclass;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set sashelp.class;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; name_=name; height_=height; age_=age; weight_=weight; sex_=sex;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pagenum=1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods noresults;&lt;BR /&gt;ods listing close;&lt;BR /&gt;ods tagsets.rtf file='C:\temp.rtf';&lt;BR /&gt;proc report data=tclass nowd;&lt;BR /&gt;column pagenum name sex age height weight name_ sex_ age_ height_ weight_;&lt;BR /&gt;define pagenum/display order noprint;&lt;BR /&gt;define name/display style(column)={cellwidth=20%};&lt;BR /&gt;define sex/display style(column)={cellwidth=20%} id page;&lt;BR /&gt;define age/display;&lt;BR /&gt;define height/display;&lt;BR /&gt;define weight/display style(column)={cellwidth=20%};&lt;BR /&gt;define name_/display;&lt;BR /&gt;define sex_/display;&lt;BR /&gt;define age_/display;&lt;BR /&gt;define height_/display;&lt;BR /&gt;define weight_/display;&lt;BR /&gt;break after pagenum/page;&lt;BR /&gt;run;&lt;BR /&gt;ods tagsets.rtf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 12:07:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156759#M11856</guid>
      <dc:creator>Rajaram</dc:creator>
      <dc:date>2015-02-06T12:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK AFTER /PAGE is not working with ODS TAGESETS.RTF when using ID option in DEFINE</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156760#M11857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, my suggestion would be to have two proc report statements, one to do the first part, then a second to do the second page. &lt;/P&gt;&lt;P&gt;ods tagsets.rtf file='C:\temp.rtf';&lt;/P&gt;&lt;P&gt;proc report data=tclass nowd;&lt;/P&gt;&lt;P&gt;column name sex age height weight name_ sex;&lt;/P&gt;&lt;P&gt;define name/display style(column)={cellwidth=20%};&lt;/P&gt;&lt;P&gt;define sex/display style(column)={cellwidth=20%} id page;&lt;/P&gt;&lt;P&gt;define age/display;&lt;/P&gt;&lt;P&gt;define height/display;&lt;/P&gt;&lt;P&gt;define weight/display style(column)={cellwidth=20%};&lt;/P&gt;&lt;P&gt;define name_/display;&lt;/P&gt;&lt;P&gt;define sex_/display;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc report data=tclass nowd;&lt;/P&gt;&lt;P&gt;column name age_ height_ weight_;&lt;/P&gt;&lt;P&gt;define name/display style(column)={cellwidth=20%};&lt;/P&gt;&lt;P&gt;define sex_/display;&lt;/P&gt;&lt;P&gt;define age_/display;&lt;/P&gt;&lt;P&gt;define height_/display;&lt;/P&gt;&lt;P&gt;define weight_/display;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods tagsets.rtf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 13:06:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156760#M11857</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-02-06T13:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK AFTER /PAGE is not working with ODS TAGESETS.RTF when using ID option in DEFINE</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156761#M11858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi RW9, Thanks for you suggestion but it will not help me. I have given example code but I have data which has more than 1000 pages also have more number of variables. so I can not write code in this way. I do not want work around I want a solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 13:30:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156761#M11858</guid>
      <dc:creator>Rajaram</dc:creator>
      <dc:date>2015-02-06T13:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK AFTER /PAGE is not working with ODS TAGESETS.RTF when using ID option in DEFINE</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156762#M11859</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; When I run this example from my paper with Scott Huntley, &lt;A href="http://support.sas.com/resources/papers/proceedings14/SAS038-2014.pdf" title="http://support.sas.com/resources/papers/proceedings14/SAS038-2014.pdf"&gt;http://support.sas.com/resources/papers/proceedings14/SAS038-2014.pdf&lt;/A&gt;. I get the same results in PDF, RTF and TAGSETS.RTF as shown in the paper. Generally, you put the PAGE option on a separate variable while the ID option identifies the variables that will repeat when the page needs to wrap, generally because the output is too wide. If you read the PROC REPORT documentation, it explains that, "&lt;SPAN style="text-decoration: underline;"&gt;for nonlisting destinations, the page break does &lt;STRONG&gt;not occur until all the rows in the report have&amp;nbsp; been printed&lt;/STRONG&gt;&lt;/SPAN&gt;. Therefore, PROC REPORT prints all the rows for all the columns to the left of the PAGE column and then starts over at the&amp;nbsp; top of the report and prints the PAGE column and the columns to the right." -- from the &lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/proc/67327/HTML/default/viewer.htm#p0wy1vqwvz43uhn1g77eb5xlvzqh.htm" title="http://support.sas.com/documentation/cdl/en/proc/67327/HTML/default/viewer.htm#p0wy1vqwvz43uhn1g77eb5xlvzqh.htm"&gt;Base SAS(R) 9.4 Procedures Guide, Third Edition&lt;/A&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; I don't believe that your code is correctly using the PAGE option, based on the documentation. Since my sample code, using SASHELP.CARS does correctly "break" the page at the CYLINDER variable and then use MAKE and TYPE (the 2 ID items) on the next "page", I think you probably need to rework your real example.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Basically, it didn't make sense to me that you would want to put NAME and SEX and then have SEX be the ID variable -AND- the PAGE variable because the whole purpose of using ID and PAGE are to control when you have very wide reports that you KNOW will not fit on one page width and so you want to control which variable starts the "page". In my example, again, using SASHELP.CARS, when I use PAGE inappropriately, the documentation tip meaning becomes clear. The paging in #3 report is broken, PROC REPORT puts as many variables as it can to fit to the page width, ignores my PAGE specification (as explained in the doc) although the ID items are still used. For report #1 and #2 I get the expected results in all 3 destinations. My report #3 seems to be the closest to what you program is doing.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods pdf file='c:\temp\ID_page.pdf';&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 rtf file='c:\temp\orig_ID_page.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;ods tagsets.rtf file='C:\temp\tr_ID_page.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;proc report data=sashelp.cars nowd spanrows&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;&amp;nbsp; style(report)={width=100%};&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; title '1) PAGE specified separate from ID items';&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; where make = 'Mazda';&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; column Make Type Model Origin DriveTrain MSRP Invoice EngineSize&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cylinders Horsepower MPG_City MPG_Highway Weight Wheelbase Length;&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; define make / order id;&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; define type / order id;&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; define Cylinders / page;&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; break after make / page;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods pdf file='c:\temp\ID_page_diff.pdf';&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 rtf file='c:\temp\orig_ID_page_diff.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;ods tagsets.rtf file='C:\temp\tr_ID_page_diff.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;proc report data=sashelp.cars nowd spanrows&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;&amp;nbsp; style(report)={width=100%};&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; title '2) MSRP Different Place to put PAGE option';&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; where make = 'Mazda';&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; column Make Type Model Origin DriveTrain MSRP Invoice EngineSize&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cylinders Horsepower MPG_City MPG_Highway Weight Wheelbase Length;&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; define make / order id;&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; define type / order id;&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; define MSRP / page;&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; break after make / page;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods pdf file='c:\temp\ID_page_diff3.pdf';&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 rtf file='c:\temp\orig_ID_page_diff3.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;ods tagsets.rtf file='C:\temp\tr_ID_page_diff3.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;proc report data=sashelp.cars nowd spanrows&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;&amp;nbsp; style(report)={width=100%};&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; title '3) Putting the PAGE on MODEL "breaks" the paging, but ID still used';&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; where make = 'Mazda';&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; column Make Type Model Origin DriveTrain MSRP Invoice EngineSize&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cylinders Horsepower MPG_City MPG_Highway Weight Wheelbase Length;&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; define make / order id;&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; define type / order id;&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; define Model / page;&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; break after make / page;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 22:57:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/BREAK-AFTER-PAGE-is-not-working-with-ODS-TAGESETS-RTF-when-using/m-p/156762#M11859</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-02-07T22:57:16Z</dc:date>
    </item>
  </channel>
</rss>

