<?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: Want to write header and trailer b4 and after using the line statement in the proc report Need h in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/386117#M19004</link>
    <description>&lt;P&gt;HI Cynthia,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks very much for giving me a perfect solution to my problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the story, We have been sending hard copy report every month to our clients , We decided to stop hard copy report and send the soft copy to customers where it will save money and time. Some customers expect both the excel and pdf report, I was able to create xls report, but when I create the PDF reportt, I have some little chalanges, Thanks for &amp;nbsp;your help to achive this so successfully.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know if you remember me, I came to your presentation at the SAS Global Forum in 2017 Orlando and it was amazing and I learned a lot about advance reporting from your presentaion. I chart with you after the presentaion at right behind the Presentation room, and got many tips and information . &amp;nbsp;Thanks very much for your tips and many informaiton you shared with me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks SAS Global Forum for giving such opportunity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks very much Cynthia and god bless you and your family.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Inp&lt;/P&gt;</description>
    <pubDate>Mon, 07 Aug 2017 19:28:47 GMT</pubDate>
    <dc:creator>Inp</dc:creator>
    <dc:date>2017-08-07T19:28:47Z</dc:date>
    <item>
      <title>Want to write header and trailer b4 and after using the line statement in the proc report Need help!</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/383998#M18985</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See my below coding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to create a pdf report. , I want to write 12 lines of customer information only at the page 1 ( in the below program I added only 2 lines at Compute before _page_) then want to &amp;nbsp;continues with &amp;nbsp;the table contained detail informaion, then at last I want to write the summary information( in the below program add two lines at Computer after _page_) , In the below program it create &amp;nbsp;header and trailer at all pages. (Note: I don't want to use the title and foot note) &amp;nbsp; . It doesnt create the report the way I want.&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 TESTDATA;
FORMAT TESTDATE DATE9.;
DO I = 1 TO 500;
NAME = 'TESTNAME1'||PUT(I,Z3.);
ACCOUNT=I;
AMOUNT=I*300.23;
TESTDATE ='22JAN2015'D + I ;
OUTPUT;
END;
RUN;

data TESTDATA;
SET TESTDATA end=eof;
pagex = INT(_N_/15) + 1;
if eof then
call symput('Lastpage',pagex);
RUN;

ods _all_ close;;
ods pdf file = 'C:\TMP\TEST.PDF' NOTOC;
proc report data=testdata NOWD ls=100 ps=20 OUT=TEMP;
BY pagex;
column NAME ACCOUNT TESTDATE AMOUNT PAGEX;
DEFINE PAGEX / NOPRINT GROUP;
DEFINE NAME / 'CUSTOMER NAME';
DEFINE ACCOUNT / 'ACCOUNT NUMBER';
DEFINE TESTDATE / 'START DATE';
DEFINE AMOUNT/ 'AMOUNT PAID';
BREAK AFTER PAGEX / PAGE;
compute before _page_/ left;
If pagex = 1 then do;
line ' this is header line';
line 'I need to wirte this at the page 1 only';
end;
endcomp;
compute after _page_/ left;
if pagex=&amp;amp;lastpage then do;
line 'This is trailer line';
line 'I need to wirte this at the very last page (not every page)';
end;
endcomp;
RUN ;

ods pdf close;
ods listing;
&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Any help is much appriciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tony&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jul 2017 20:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/383998#M18985</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2017-07-29T20:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Want to write header and trailer b4 and after using the line statement in the proc report Need h</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/383999#M18986</link>
      <description>&lt;P&gt;I forget mention.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using Winodws SAS 9.2 TS2M3&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jul 2017 17:41:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/383999#M18986</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2017-07-29T17:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Want to write header and trailer b4 and after using the line statement in the proc report Need h</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/384006#M18987</link>
      <description>&lt;P&gt;Why did you list PAGEX last on the COLUMN statement? &amp;nbsp;You probably want to list that variable FIRST.&lt;/P&gt;
&lt;P&gt;Then you can use COMPUTE BEFORE PAGEX to print on the first page.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also use the Insert SAS code icon n the editor when you want to paste in sample code.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jul 2017 19:11:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/384006#M18987</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-07-29T19:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Want to write header and trailer b4 and after using the line statement in the proc report Need h</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/384021#M18988</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; This will NOT work for you:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;If pagex = 1 then do;
line ' this is header line';
line 'I need to wirte this at the page 1 only';
end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;because PROC REPORT does NOT write a LINE statement conditionally -- PROC REPORT treats the LINE statement differently than the DATA step and the LINE statement is ALWAYS executed. The only thing you can control is the length of the line you write and WHEN the length is 0, then PROC REPORT suppresses the LINE output. See this Tech Support note: &lt;A href="http://support.sas.com/kb/37/763.html" target="_blank"&gt;http://support.sas.com/kb/37/763.html&lt;/A&gt; and see the explanation on page 9 of this paper &lt;A href="https://support.sas.com/rnd/papers/sgf07/sgf2007-report.pdf" target="_blank"&gt;https://support.sas.com/rnd/papers/sgf07/sgf2007-report.pdf&lt;/A&gt; .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Here is a proof of concept.&lt;/P&gt;
&lt;P&gt;cynthia&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;
&lt;P&gt;&amp;nbsp;&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 newshoes;
  set sashelp.shoes end=eof;
  where region in ('Asia' 'Canada');
  pagex = INT(_N_/15) + 1;
  if eof then
    call symput('Lastpage',pagex);
run;

 
options nodate number pageno=1;
ods pdf file='c:\temp\proof_of_concept1.pdf';
  
  proc report data=newshoes;
    column pagex region subsidiary sales;
	define pagex / group /*noprint*/;
	define region / order;
	define subsidiary / order;
	define sales / sum;
	break after pagex / page;
    compute before _page_;
       holdpg = pagex;
       if pagex=1 then do;
          l1 = 'Write this one time';
          l2 = 'Before everything';
	  lg1 = length(l1);
	  lg2 = length(l2);
       end;
       else do;
          l1=' ';
          l2 = ' ';
	  lg1=0;
	  lg2=0;
       end;
	   line l1 $varying. lg1;
           line l2 $varying. lg2;
     endcomp;
     compute after _page_;
       if holdpg = &amp;amp;lastpage then do;
          l1 = 'Write this one time';
          l2 = 'After everything';
	  lg1 = length(l1);
	  lg2 = length(l2);
       end;
       else do;
          l1=' ';
          l2 = ' ';
	  lg1=0;
	  lg2=0;
       end;
	   line l1 $varying. lg1;
           line l2 $varying. lg2;
   endcomp;
run;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pg1_2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14203i1755236420ABEFEB/image-size/large?v=v2&amp;amp;px=999" role="button" title="pg1_2.png" alt="pg1_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pg3_4.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14205i96B92208C67EC0E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="pg3_4.png" alt="pg3_4.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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jul 2017 21:33:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/384021#M18988</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-07-29T21:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Want to write header and trailer b4 and after using the line statement in the proc report Need h</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/384305#M18991</link>
      <description>&lt;P&gt;Hi Cynthia,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks very much. your solution was perfect for what I expect. Thank you &amp;nbsp;so much. I have still one more question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to summarize four more numeric variable in my case. when I put&amp;nbsp;&amp;nbsp;rbreak after / summarize to summarize all the numeric values, summarizing comes in the next page.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your example , I have added the Rbreak statment and I found it comes in a separte &amp;nbsp;page , instead of comming on the &amp;nbsp;same page?Is there any simple way to fix it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again thanks very much Cythiia.&amp;nbsp;&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;
&lt;P&gt;data newshoes;&lt;BR /&gt; set sashelp.shoes end=eof;&lt;BR /&gt; where region in ('Asia' 'Canada');&lt;BR /&gt; pagex = INT(_N_/15) + 1;&lt;BR /&gt; if eof then&lt;BR /&gt; call symput('Lastpage',pagex);&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ods listing close;&lt;BR /&gt;options nodate number pageno=1;&lt;BR /&gt;ods pdf file='c:\tmp\proof_of_concept1.pdf';&lt;BR /&gt; &lt;BR /&gt; proc report data=newshoes nowd;&lt;BR /&gt; column pagex region subsidiary sales;&lt;BR /&gt; define pagex / group /*noprint*/;&lt;BR /&gt; define region / order;&lt;BR /&gt; define subsidiary / order;&lt;BR /&gt; define sales / sum;&lt;BR /&gt; break after pagex / page;&lt;BR /&gt; compute before _page_;&lt;BR /&gt; holdpg = pagex;&lt;BR /&gt; if pagex=1 then do;&lt;BR /&gt; l1 = 'Write this one time';&lt;BR /&gt; l2 = 'Before everything';&lt;BR /&gt; lg1 = length(l1);&lt;BR /&gt; lg2 = length(l2);&lt;BR /&gt; end;&lt;BR /&gt; else do;&lt;BR /&gt; l1=' ';&lt;BR /&gt; l2 = ' ';&lt;BR /&gt; lg1=0;&lt;BR /&gt; lg2=0;&lt;BR /&gt; end;&lt;BR /&gt; line l1 $varying. lg1;&lt;BR /&gt; line l2 $varying. lg2;&lt;BR /&gt; endcomp;&lt;BR /&gt; compute after _page_;&lt;BR /&gt; if holdpg = &amp;amp;lastpage then do;&lt;BR /&gt; l1 = 'Write this one time';&lt;BR /&gt; l2 = 'After everything';&lt;BR /&gt; lg1 = length(l1);&lt;BR /&gt; lg2 = length(l2);&lt;BR /&gt; end;&lt;BR /&gt; else do;&lt;BR /&gt; l1=' ';&lt;BR /&gt; l2 = ' ';&lt;BR /&gt; lg1=0;&lt;BR /&gt; lg2=0;&lt;BR /&gt; end;&lt;BR /&gt; line l1 $varying. lg1;&lt;BR /&gt; line l2 $varying. lg2;&lt;BR /&gt; endcomp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt; &lt;STRONG&gt;rbreak after / summarize;&lt;/STRONG&gt;&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;ods listing;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jul 2017 15:06:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/384305#M18991</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2017-07-31T15:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Want to write header and trailer b4 and after using the line statement in the proc report Need h</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/385150#M18994</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I don't think you're going to be able to do this with one pass through the data. However, one of the nice features of PROC REPORT is that it WILL create an OUT=dataset. So code like this will "presummarize" your data and will also make a new dataset called POC2:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods html file='c:\temp\getdataready.html';
data newshoes;
  set sashelp.shoes end=eof;
  where region in ('Asia' 'Canada');
  pagex = INT(_N_/15) + 1;
  if eof then
    call symput('Lastpage',pagex);
run;

   
  proc report data=newshoes out=poc;
    column pagex region subsidiary sales;
	define pagex / group /*noprint*/;
	define region / order;
	define subsidiary / order;
	define sales / sum;
	rbreak after / summarize;
run;

data poc2;
  set poc;
  ord = _n_;
  if _break_ = '_RBREAK_' then do;
     pagex=4;
	 region = 'Grand Total';
  end;
run;
proc print data=poc2;
  title 'After pre-summarizing';
run;
title;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then you use POC2 data, which now has the Grand Total line as part of pagex=4 (in my data). Next, to get this output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="with_grand_total.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14293i41624E7637423B05/image-size/large?v=v2&amp;amp;px=999" role="button" title="with_grand_total.png" alt="with_grand_total.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Notice how your Grand Total line is "inside" the group for PAGEX and the code you submit is mostly the same as previously shown before except for the fact that since the data is pre-summarized, we can use ORDER instead of GROUP for the usage items. I did not put NOPRINT on PAGEX or ORD variables because I wanted you to see how POC2 was different from the original report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
options nodate number pageno=1;
ods pdf file='c:\temp\proof_of_concept_presummarize2.pdf';

proc report data=poc2 missing;
    column pagex ord region subsidiary sales;
	define pagex / order /*noprint*/;
	define region / order;
	define subsidiary / order;
	define sales / sum;
	break after pagex / page;
    compute before _page_;
	   holdpg = pagex;
       if pagex=1 then do;
          l1 = 'Write this one time';
          l2 = 'Before everything  ';
          lg1 = length(l1);
          lg2 = length(l2);
       end;
       else do;
          l1=' ';
          l2 = ' ';
          lg1=0;
          lg2=0;
       end;;
	   line l1 $varying. lg1;
       line l2 $varying. lg2;
	endcomp;
	compute after _page_;
       if holdpg = &amp;amp;lastpage then do;
          l1 = 'Write this one time';
          l2 = 'After everything';
          lg1 = length(l1);
          lg2 = length(l2);
       end;
       else do;
          l1=' ';
          l2 = ' ';
          lg1=0;
          lg2=0;
      end;
      line l1 $varying. lg1;
      line l2 $varying. lg2;
endcomp;
run;
ods pdf close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2017 23:10:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/385150#M18994</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-08-02T23:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Want to write header and trailer b4 and after using the line statement in the proc report Need h</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/386117#M19004</link>
      <description>&lt;P&gt;HI Cynthia,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks very much for giving me a perfect solution to my problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the story, We have been sending hard copy report every month to our clients , We decided to stop hard copy report and send the soft copy to customers where it will save money and time. Some customers expect both the excel and pdf report, I was able to create xls report, but when I create the PDF reportt, I have some little chalanges, Thanks for &amp;nbsp;your help to achive this so successfully.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know if you remember me, I came to your presentation at the SAS Global Forum in 2017 Orlando and it was amazing and I learned a lot about advance reporting from your presentaion. I chart with you after the presentaion at right behind the Presentation room, and got many tips and information . &amp;nbsp;Thanks very much for your tips and many informaiton you shared with me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks SAS Global Forum for giving such opportunity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks very much Cynthia and god bless you and your family.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Inp&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2017 19:28:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/386117#M19004</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2017-08-07T19:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Want to write header and trailer b4 and after using the line statement in the proc report Need h</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/386159#M19005</link>
      <description>Hi!&lt;BR /&gt;  Yes, I remember that conversation! Glad to see that you're still working with PROC REPORT!&lt;BR /&gt;cynthia</description>
      <pubDate>Mon, 07 Aug 2017 22:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Want-to-write-header-and-trailer-b4-and-after-using-the-line/m-p/386159#M19005</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-08-07T22:36:07Z</dc:date>
    </item>
  </channel>
</rss>

