<?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 Custom break line in proc report in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Custom-break-line-in-proc-report/m-p/269275#M1804</link>
    <description>&lt;P&gt;Is there any way with a compute statement or using the _RBREAK_ column to add a break line in a proc report anywhere i would like.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for instance, breaks are linked to the grouping variable, and one could place one after or before the defined grouping variable in a report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc report data=work.final&lt;BR /&gt;column question online_type_desc, (n response1);&lt;BR /&gt;define question/group f=$question. 'Question';&lt;BR /&gt;define online_type_desc/across f=$online.;&lt;BR /&gt;define n/ f=comma8.;&lt;/P&gt;&lt;P&gt;define response1/analysis mean f=8.2 'Average' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;break after question/summarize.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, lets say I don't want to break after the natural breaks in question. I want to break every 3rd line? I assume i could make a dummy grouping&amp;nbsp;variable and hide it, but this might change too. &amp;nbsp;In this report, every 3 lines, but in the next, I want to break it every 5th line.&amp;nbsp;Is there anyway to do this within the proc report code itself?&lt;/P&gt;</description>
    <pubDate>Mon, 09 May 2016 20:44:50 GMT</pubDate>
    <dc:creator>sasiscool</dc:creator>
    <dc:date>2016-05-09T20:44:50Z</dc:date>
    <item>
      <title>Custom break line in proc report</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Custom-break-line-in-proc-report/m-p/269275#M1804</link>
      <description>&lt;P&gt;Is there any way with a compute statement or using the _RBREAK_ column to add a break line in a proc report anywhere i would like.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for instance, breaks are linked to the grouping variable, and one could place one after or before the defined grouping variable in a report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc report data=work.final&lt;BR /&gt;column question online_type_desc, (n response1);&lt;BR /&gt;define question/group f=$question. 'Question';&lt;BR /&gt;define online_type_desc/across f=$online.;&lt;BR /&gt;define n/ f=comma8.;&lt;/P&gt;&lt;P&gt;define response1/analysis mean f=8.2 'Average' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;break after question/summarize.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, lets say I don't want to break after the natural breaks in question. I want to break every 3rd line? I assume i could make a dummy grouping&amp;nbsp;variable and hide it, but this might change too. &amp;nbsp;In this report, every 3 lines, but in the next, I want to break it every 5th line.&amp;nbsp;Is there anyway to do this within the proc report code itself?&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2016 20:44:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Custom-break-line-in-proc-report/m-p/269275#M1804</guid>
      <dc:creator>sasiscool</dc:creator>
      <dc:date>2016-05-09T20:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Custom break line in proc report</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Custom-break-line-in-proc-report/m-p/269349#M1805</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If in your reports you want to break every 3 lines or X lines, you could edit the page size with&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options ps=3;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will make that the natural break page change to the 3th line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also you could create a group variable as you have said and create a compute after like this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; break after GROUPING_VAR  / page;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will create the break "_PAGE_" character at the end of each group.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope that this help you&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>Tue, 10 May 2016 06:39:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Custom-break-line-in-proc-report/m-p/269349#M1805</guid>
      <dc:creator>arodriguez</dc:creator>
      <dc:date>2016-05-10T06:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Custom break line in proc report</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Custom-break-line-in-proc-report/m-p/270693#M1808</link>
      <description>&lt;P&gt;hey thanks man for the the tips. I wasn't aware of the page function.&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2016 14:02:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Custom-break-line-in-proc-report/m-p/270693#M1808</guid>
      <dc:creator>sasiscool</dc:creator>
      <dc:date>2016-05-16T14:02:58Z</dc:date>
    </item>
  </channel>
</rss>

