<?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 break a page in proc report ? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576877#M163361</link>
    <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the solution.&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;data test1;&lt;BR /&gt;input first $ last $ num1 ;&lt;BR /&gt;cards;&lt;BR /&gt;first1 last1 1&lt;BR /&gt;first1 last2 2&lt;BR /&gt;first1 last3 3&lt;BR /&gt;first2 last4 4&lt;BR /&gt;first2 last5 5&lt;BR /&gt;first2 last6 6&lt;BR /&gt;first2 last7 7&lt;BR /&gt;first2 last8 8&lt;BR /&gt;first2 last9 9&lt;BR /&gt;first3 last1 2&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods pdf file='/temp/use_pgbrk1.pdf' notoc;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc report data = test1 nowd ;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where first = "first1" ;&lt;/STRONG&gt;&lt;BR /&gt;column first last num1;&lt;BR /&gt;define first/group ;&lt;BR /&gt;define last/display;&lt;BR /&gt;define num1/analysis;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc report data = test1 nowd ;&lt;BR /&gt;&lt;STRONG&gt;where first = "first2" ;&lt;/STRONG&gt;&lt;BR /&gt;column first last num1;&lt;BR /&gt;define first/group ;&lt;BR /&gt;define last/display;&lt;BR /&gt;define num1/analysis;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc report data = test1 nowd ;&lt;BR /&gt;&lt;STRONG&gt;where first = "first3" ;&lt;/STRONG&gt;&lt;BR /&gt;column first last num1;&lt;BR /&gt;define first/group ;&lt;BR /&gt;define last/display;&lt;BR /&gt;define num1/analysis;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;But would need some automatic solution so that I can generate report e.g. 100 page and 100 record/headline of that each 100 records so how should I go with this data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here I am not getting expected data , could you plz help me .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data final;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;set test1;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;order= _n_;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;pgbrk=ceil(divide(order,4));&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;run ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or share some other query for 100 individual records.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Jul 2019 12:17:49 GMT</pubDate>
    <dc:creator>pdhokriya</dc:creator>
    <dc:date>2019-07-26T12:17:49Z</dc:date>
    <item>
      <title>How to add cont'd after page break in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265020#M52043</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to generate&amp;nbsp;a proc report from a huge sas dataset. I am having troubles while doing page break. I need to display (cont'd) as shown below in Example. I am able to create Output from Dataset 1. But I need to add &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Sub Cat 2 (cont'd)&lt;/STRONG&gt; &lt;/FONT&gt;as shown below when page break occurs and report goes to 2nd page. How do I accomplish this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is just for example. I am working with a huge dataset which has 100s of Categories and Sub Categories. How do I write the code to create a page break and show (cont'd) in the next page along with the Sub Cat name at which the page break occured ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/2856i5F006CC3F9C2CFF0/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="test.jpg" title="test.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated. Thanks much !&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2016 12:06:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265020#M52043</guid>
      <dc:creator>bobbyc</dc:creator>
      <dc:date>2016-04-20T12:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to add cont'd after page break in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265029#M52046</link>
      <description>&lt;P&gt;Could you use compute block ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;compute after _page_;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;col='Continued ...... ';&lt;/P&gt;
&lt;P&gt;endcomp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2016 08:30:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265029#M52046</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-04-20T08:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to add cont'd after page break in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265030#M52047</link>
      <description>&lt;P&gt;Well, not much info given there, so bit of a guess. &amp;nbsp;What I always do with my outputs is declare a page variable up front so I know exactly where the breaking will occur - you can do this as simply as saying X amount of observations = page 1, X amount= page 2 etc. or more complicated. &amp;nbsp;But that is a different topic. &amp;nbsp;Then in the proc report you break on that variable and page, then you can also use that to compute:&lt;/P&gt;
&lt;PRE&gt;data want;
  set sashelp.class;
  if _n_ &amp;lt;= 10 then pge=1;
  else pge=2;
run;

ods rtf file...;
proc report...;
  columns _all_;
  define pge / noprint;
  define...;

  break after pge / page;
  compute after pge;
    line 'Contd...';
  endcomp;
run;
ods rtf close;&lt;/PRE&gt;</description>
      <pubDate>Wed, 20 Apr 2016 08:32:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265030#M52047</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-04-20T08:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to add cont'd after page break in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265060#M52055</link>
      <description>Hi. Thanks for the reply. I have to mention the Category/Sub Cat along with (cont'd). In the above example it is Sub Cat 2 ( cont'd). But when I am working with a huge dataset with 100s of Categories/Sub Cats how do I get which Sub Cat the page is breaking at ?</description>
      <pubDate>Wed, 20 Apr 2016 12:02:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265060#M52055</guid>
      <dc:creator>bobbyc</dc:creator>
      <dc:date>2016-04-20T12:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to add cont'd after page break in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265076#M52063</link>
      <description>&lt;P&gt;You need to tell the code. &amp;nbsp;Have a look at the output, roughly how many do you want on one page? &amp;nbsp;That then becomes your logic. &amp;nbsp;You could create some algorithm to do it, and I have seen these floating around but they tens to be vast complicated things that only work half the time. &amp;nbsp;You know your data and what you want your report to look like, so you need to fix it how you want.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2016 12:49:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/265076#M52063</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-04-20T12:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to add cont'd after page break in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/491573#M128949</link>
      <description>&lt;P&gt;I have the same problem: I need the "ordered" information after an automatic page break. In my example I need e.g. on page 2 (obs=27; and on followed pages) the information about 'origin' and 'make'. Further it would be nice to add "continued" - either as extra line before break or within the variables [e.g. in obs=27 "Asia (continued)" and "Hundai (continued)"] - but that is not necessary.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have again and again long listings and that problem. I did not find a simple solution which I can add into my macros for different data sets / variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I could imagine that it could be possible - after e.g. every 26th OBS - that the variables 'origin' and 'make' can be written in new variables and only display these new variables (as 'display' and not 'order'). &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;What do you all mean?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/** prepare DS for short example **/
DATA cars ;
	SET sashelp.cars ;
	IF origin not IN ("Asia","Europe","USA") THEN DELETE;
RUN ;

/** set options for example **/
OPTIONS papersize=A4 orientation=landscape ;

ods rtf file='myfile.rtf'; 
proc report nowd ps=40; 
column obs origin make horsepower; 
	define obs / computed; 
	define origin / order; 
	define make / order; 
	define horsepower / display ; 
	compute obs; *used only to display problem;
		dsobs + 1;
		obs = dsobs;
	endcompute;
run; 
ods rtf close; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Aug 2018 09:52:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/491573#M128949</guid>
      <dc:creator>PegasusTT77</dc:creator>
      <dc:date>2018-08-31T09:52:39Z</dc:date>
    </item>
    <item>
      <title>How to break a page in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576558#M163213</link>
      <description>&lt;P&gt;If data has 5 countries then how to get individual country on differnt page by using proc report&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Page 1 = India ) (Page 2 - China) (Page 3 - USA) (Page 4 - England) (Page 5 - Poland)&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 12:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576558#M163213</guid>
      <dc:creator>pdhokriya</dc:creator>
      <dc:date>2019-07-25T12:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to break a page in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576567#M163217</link>
      <description>&lt;P&gt;Just combine multiply PROC REPORT together .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods rtf ....................;&lt;/P&gt;
&lt;P&gt;proc report ......&lt;/P&gt;
&lt;P&gt;where country='India';&lt;/P&gt;
&lt;P&gt;..........&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc report .......&lt;/P&gt;
&lt;P&gt;where country='China';&lt;/P&gt;
&lt;P&gt;...........&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 12:50:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576567#M163217</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-07-25T12:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to break a page in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576877#M163361</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the solution.&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;data test1;&lt;BR /&gt;input first $ last $ num1 ;&lt;BR /&gt;cards;&lt;BR /&gt;first1 last1 1&lt;BR /&gt;first1 last2 2&lt;BR /&gt;first1 last3 3&lt;BR /&gt;first2 last4 4&lt;BR /&gt;first2 last5 5&lt;BR /&gt;first2 last6 6&lt;BR /&gt;first2 last7 7&lt;BR /&gt;first2 last8 8&lt;BR /&gt;first2 last9 9&lt;BR /&gt;first3 last1 2&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods pdf file='/temp/use_pgbrk1.pdf' notoc;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc report data = test1 nowd ;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where first = "first1" ;&lt;/STRONG&gt;&lt;BR /&gt;column first last num1;&lt;BR /&gt;define first/group ;&lt;BR /&gt;define last/display;&lt;BR /&gt;define num1/analysis;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc report data = test1 nowd ;&lt;BR /&gt;&lt;STRONG&gt;where first = "first2" ;&lt;/STRONG&gt;&lt;BR /&gt;column first last num1;&lt;BR /&gt;define first/group ;&lt;BR /&gt;define last/display;&lt;BR /&gt;define num1/analysis;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc report data = test1 nowd ;&lt;BR /&gt;&lt;STRONG&gt;where first = "first3" ;&lt;/STRONG&gt;&lt;BR /&gt;column first last num1;&lt;BR /&gt;define first/group ;&lt;BR /&gt;define last/display;&lt;BR /&gt;define num1/analysis;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;But would need some automatic solution so that I can generate report e.g. 100 page and 100 record/headline of that each 100 records so how should I go with this data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here I am not getting expected data , could you plz help me .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data final;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;set test1;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;order= _n_;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;pgbrk=ceil(divide(order,4));&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;run ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or share some other query for 100 individual records.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2019 12:17:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576877#M163361</guid>
      <dc:creator>pdhokriya</dc:creator>
      <dc:date>2019-07-26T12:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to break a page in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576881#M163363</link>
      <description>&lt;P&gt;I don't understand. You want each page have 100 rows ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;

data temp;
 set sashelp.cars(where=(type='SUV'));
 if mod(_n_,10)=1 then page+1;	 /*&amp;lt;-- change 10 into  100*/
 run;
proc report data=temp nowd;
column _all_;
define page/order;
break after page/page;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 Jul 2019 12:32:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576881#M163363</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-07-26T12:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to break a page in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576897#M163368</link>
      <description>&lt;P&gt;Oh..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok .. I want a data from car.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data car ( keep = &lt;STRONG&gt;make&lt;/STRONG&gt; type origin msrp ) ;&lt;BR /&gt;set sashelp.cars;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here, PFA for for clarification and I required each&amp;nbsp;&lt;STRONG&gt;MAKE&lt;/STRONG&gt;&amp;nbsp;variable (Headline) of the report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So,&lt;/P&gt;&lt;P&gt;1st page should have Acura on top of the report and other data (type origin msrp ) listing in table below.&lt;/P&gt;&lt;P&gt;2nd page should have Audi.................and its data&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;17th page Jeep.................and its data&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;38th Page volvo..................and its data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance&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>Fri, 26 Jul 2019 13:29:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/576897#M163368</guid>
      <dc:creator>pdhokriya</dc:creator>
      <dc:date>2019-07-26T13:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to break a page in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/577151#M163515</link>
      <description>&lt;P&gt;The simple way is using TITLE ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data car ( keep = make type origin msrp ) ;
set sashelp.cars;
run;

options nodate nonumber;
title ' ';

ods pdf file='c:\temp\x.pdf';
title  'Manufactured by Acura';
proc report data=car nowd;
where make='Acura';
run;

title 'Manufactured by Audi';
proc report data=car nowd;
where make='Audi';
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 27 Jul 2019 12:25:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/577151#M163515</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-07-27T12:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to break a page in proc report ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/577154#M163517</link>
      <description>&lt;P&gt;Or use ODS TEXT=&lt;/P&gt;
&lt;P&gt;[EDITED]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data car ( keep = make type origin msrp ) ;
set sashelp.cars;
run;

options nodate nonumber topmargin=1cm;
title ' ';
ods escapechar='~';
ods pdf file='c:\temp\x.pdf';

ods pdf startpage=now;
ods text='~S={just=center} Manufactured by Acura';
ods pdf startpage=no;
proc report data=car nowd;
where make='Acura';
run;

ods pdf startpage=now;
ods text='~S={just=center} Manufactured by Audi';
ods pdf startpage=no;
proc report data=car nowd;
where make='Audi';
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 27 Jul 2019 12:43:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-cont-d-after-page-break-in-proc-report/m-p/577154#M163517</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-07-27T12:43:36Z</dc:date>
    </item>
  </channel>
</rss>

