<?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 HTML -- Is it possible to control how much output appears on a page? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389308#M19098</link>
    <description>&lt;PRE&gt;
How about this one ?




ods html options(page_break='no');
proc report data=sashelp.class(where=(sex='F')) nowd;
run;
ods text='&lt;BR /&gt;';

proc report data=sashelp.class(where=(sex='M')) nowd;
run;
ods text='&lt;BR /&gt;';

proc report data=sashelp.class nowd;
run;
ods html close;



&lt;/PRE&gt;</description>
    <pubDate>Sat, 19 Aug 2017 11:53:53 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2017-08-19T11:53:53Z</dc:date>
    <item>
      <title>ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389217#M19094</link>
      <description>&lt;P&gt;I am using PROC REPORT to generate tables, and sending the output to an HTML file via ODS HTML. Everything works great, I get the&amp;nbsp;exact tables that I want,&amp;nbsp;except I want two tables on a page, and there are more than 2 BY groups. So, I want the first two BY groups on page 1, the next two BY groups on page 2, and so on and so forth. For completeness, here is my code (although I think the problem isn't&amp;nbsp;this code, it's somewhere in ODS that I don't know). How can I do this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods html file="report.html" path="&amp;amp;myfolder" style=htmlblue;&lt;BR /&gt;proc report nowindows data=stats1;
	by fico;
	column ias ltv,ever60pct ltv,bankinterestrate ltv,nloans;
	define ias/group 'IAS' order=data;
	define ltv/across "LTV" order=internal;
	define ever60pct/analysis sum format=nlpctn12.2 'Ever 60 %';
	define nloans/analysis sum format=comma6.0 'N Loans';
	define bankinterestrate/analysis sum format=6.2 'Interest Rate';
run;&lt;BR /&gt;ods html close;&lt;/PRE&gt;</description>
      <pubDate>Fri, 18 Aug 2017 20:01:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389217#M19094</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-08-18T20:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389245#M19095</link>
      <description>&lt;P&gt;HTML doesn't have a concept of pages - that's likely the biggest issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2017 22:06:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389245#M19095</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-18T22:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389251#M19096</link>
      <description>&lt;P&gt;Can you provide some example data. I'm not going to try to fudge something up with that many variables.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2017 22:14:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389251#M19096</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-18T22:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389308#M19098</link>
      <description>&lt;PRE&gt;
How about this one ?




ods html options(page_break='no');
proc report data=sashelp.class(where=(sex='F')) nowd;
run;
ods text='&lt;BR /&gt;';

proc report data=sashelp.class(where=(sex='M')) nowd;
run;
ods text='&lt;BR /&gt;';

proc report data=sashelp.class nowd;
run;
ods html close;



&lt;/PRE&gt;</description>
      <pubDate>Sat, 19 Aug 2017 11:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389308#M19098</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-08-19T11:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389311#M19099</link>
      <description>ods html options(page_break='no');
proc report data=sashelp.class(where=(sex='F')) nowd;
run;
ods text='&lt;BR /&gt;';

proc report data=sashelp.class(where=(sex='M')) nowd;
run;
ods text='&lt;BR /&gt;';

proc report data=sashelp.class nowd;
run;
ods html close;</description>
      <pubDate>Sat, 19 Aug 2017 12:12:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389311#M19099</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-08-19T12:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389312#M19100</link>
      <description>The forum keep eating my code.

ods text='    &amp;lt;   b   r   &amp;gt;        &amp;lt;    /   b   r    &amp;gt;       '    ;</description>
      <pubDate>Sat, 19 Aug 2017 12:16:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389312#M19100</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-08-19T12:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389314#M19101</link>
      <description>&lt;P&gt;Thanks, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;. I will give this a try on Monday.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2017 13:15:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389314#M19101</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-08-19T13:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389321#M19102</link>
      <description>&lt;P&gt;This raises the question, if ODS HTML is not a good choice here (as pointed out by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;), what would be a better ODS destination where I can force a new page after two by groups, and another new page after another two by groups, and so on?&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2017 15:20:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389321#M19102</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-08-19T15:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389328#M19103</link>
      <description>&lt;P&gt;PDF or RTF and use STARTPAGE option to control page breaks?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2017 16:41:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389328#M19103</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-19T16:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389345#M19104</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;PDF or RTF and use STARTPAGE option to control page breaks?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I will certainly give this a try on Monday when I am back in the office. It appears that I am going to have to write some sort of macro loop to output two by-groups at a time to a single page (which, by the way, is not the problem, I can write macro loops in my sleep). Do you agree? Or am I missing something here?&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2017 19:51:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389345#M19104</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-08-19T19:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS HTML -- Is it possible to control how much output appears on a page?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389565#M19105</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;PDF or RTF and use STARTPAGE option to control page breaks?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I will certainly give this a try on Monday when I am back in the office. It appears that I am going to have to write some sort of macro loop to output two by-groups at a time to a single page (which, by the way, is not the problem, I can write macro loops in my sleep). Do you agree? Or am I missing something here?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Proc Report does have a role for a variable to do "page" so if an additional variable to indicate the page as the first column and set to noprint might work.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2017 15:53:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-HTML-Is-it-possible-to-control-how-much-output-appears-on-a/m-p/389565#M19105</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-21T15:53:37Z</dc:date>
    </item>
  </channel>
</rss>

