<?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: URGENT HELP - PROC REPORT in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92128#M9375</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; You can't have more than 1 DEFINE statement for an item. So your 2 DEFINES, both for GENPCT will be an issue. So that is one problem with your posted code. If you want to get a summary of any kind for GENPCT at the break, you will need to define it with SUM or ANALYSIS and get rid of the DEFINE with COMPUTED. Or, if GENPCT is NOT in the data and you truly are calculating it, then get rid of the DEFINE that says DISPLAY as the usage and leave the DEFINE with COMPUTED -- but only have 1 DEFINE statement for GENPCT. Any item on the COLUMN statement can have a COMPUTE block.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Honestly, I can't replicate your stated behavior. If I use the code below, which is putting exactly 35 obs on each page, using the PGCNTR variable, then I get a summarized line only at the BREAK.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I can't agree with you that PROC REPORT has BIG limitations. Yes, it does have limitations, but, as I remember, you wanted previously to apply a format to the SAS page number from {thispage} and that is not a limitation of PROC REPORT -- that is a limitation of ODS. The fact that you can make your own dummy page number and then use PROC REPORT to put that dummy page number on the report implies to me that PROC REPORT is quite powerful and flexible. There are some report generators that don't give you very much control over your headers and titles, so I think you have a lot of control.&lt;/P&gt;&lt;P&gt;&amp;nbsp; The fact that @129 might not work as you desire is not really a limitation of PROC REPORT, either. It is the difference between writing to the LISTING destination and writing to other ODS destinations. In the LISTING destination, your output "page" is like a piece of graph paper, where every tiny print position is exactly the same size and you can write to a fixed position because you know exactly how many characters will fit on a page, both horizontally and vertically. However, in the ODS world, some destinations, like HTML are not paged destinations, so there is no concept of a page or page breaks or page numbers. In other destinations, the letter 'i' takes up way less space on a printed line than the letter 'w':&lt;/P&gt;&lt;P&gt;iiiiiiiiii&lt;SPAN style="color: #ff0000;"&gt;i&lt;/SPAN&gt;iiiiiiiii&amp;nbsp; (20 'i')&lt;/P&gt;&lt;P&gt;wwwwwwwww&lt;SPAN style="color: #ff0000;"&gt;w&lt;/SPAN&gt;wwwwwwwwww (20 'w')&lt;/P&gt;&lt;P&gt;sssssssss&lt;SPAN style="color: #ff0000;"&gt;s&lt;/SPAN&gt;ssssssssss (20 's')&lt;/P&gt;&lt;P&gt;abcdefghi&lt;SPAN style="color: #ff0000;"&gt;j&lt;/SPAN&gt;klmnopqrst&amp;nbsp; (20 letters of the alphabet)&lt;/P&gt;&lt;P&gt;supercali&lt;SPAN style="color: #ff0000;"&gt;f&lt;/SPAN&gt;ragilisticexpealidocious&amp;nbsp; (random word with 34 characters)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, where is &lt;SPAN style="color: #ff0000;"&gt;@10&lt;/SPAN&gt; on every line???? Does it "line up"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I have attached screenshots that show just about everything your program does -- I didn't have any percent data, but I have a calculated page number in the COMPUTE BEFORE; I have a fake page break variable; and I have a summary line only on the last page.&lt;/P&gt;&lt;P&gt;&amp;nbsp; One difference between my program and yours is that I use a BREAK BEFORE PGCNTR -- because if I don't my summary line from the RBREAK will be on a separate page. But, I do NOT get a summary line on every page, as you can see from the screenshot of the end of page 1 and the start of page 2. Now, if you did a PROC PRINT on a data set created by PROC REPORT, you would see a line for every time you break (such as the COMPUTE BEFORE _PAGE_ and the BREAK) -- but I don't see OUT=.&lt;/P&gt;&lt;P&gt;&amp;nbsp; This may be an issue with something about your data or something else you're doing with your code. You might want to work with Tech Support on this one...I don't understand how your posted code is getting a summary on every page. I could understand it if you had a BY statement -- but I'm stumped.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data pageit;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; set sashelp.shoes(obs=100);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; retain pgcntr 1;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; output;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; if mod(_n_,35) = 0 then pgcntr +1;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;options nodate nonumber orientation=portrait&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; topmargin=1in bottommargin=1in&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; leftmargin=1in rightmargin=1in;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title; footnote;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf file='c:\temp\fake_page_break.pdf' notoc style=journal;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods escapechar='~';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=pageit nowd&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(report)={width=100% rules=group frame=void&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_weight=medium font_size=8pt&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_face="Courier New"} &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)={font_weight=medium font_size=8pt&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_face="Courier New"}&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={font_weight=medium font_size=8pt&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_face="Courier New"}; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column pgcntr region subsidiary product sales;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define pgcntr / order&amp;nbsp; /* NOPRINT */;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define region / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define subsidiary / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define product / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define sales / sum;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute before _page_ / &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style={font_face="Courier New"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_size=8PT&amp;nbsp; just=r};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; LINE "PAGE~{nbspace 9}:" pgcntr;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; break before pgcntr / page ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; rbreak after / summarize style={font_weight=bold};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute after;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; region='All Counties';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf close;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11392i2FA1B4B5CB7BB98B/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="end_of_report.jpg" title="end_of_report.jpg" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11393iD113590576E628C1/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="bottom_page1.jpg" title="bottom_page1.jpg" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2012 14:33:33 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2012-04-26T14:33:33Z</dc:date>
    <item>
      <title>URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92117#M9364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using Proc report and in my data set there are no page break variables.I am using the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After it is going from first page to second page number is not changing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use a variable to create a page break then the All counties is printing after every page.All counties is a summarized value and it should print in the last page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to over come this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf file =xxxxxxx;&lt;/P&gt;&lt;P&gt;PROC REPORT DATA=POP SPLIT='*'&lt;/P&gt;&lt;P&gt;&amp;nbsp; STYLE(REPORT)={WIDTH=100% RULES=GROUP FRAME=VOID FONT_WEIGHT=MEDIUM FONT_SIZE=8PT&amp;nbsp; FONT_FACE = "Courier New" ASIS=ON }&lt;/P&gt;&lt;P&gt;&amp;nbsp; STYLE(COLUMN)={BACKGROUND=WHITE FOREGROUND=black FONT_FACE="Courier New" FONT_WEIGHT=MEDIUM FONT_SIZE=8pt };&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; COLUMN SSN LASTNAME CITY STATE COUNTY&amp;nbsp; TOTC GENC GENPCT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINE SSN / DISPLAY STYLE={WIDTH=10.0% JUST = L}&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINE LASTNAME / DISPLAY STYLE={WIDTH=24.0% JUST = L};&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINE CITY / DISPLAY&amp;nbsp;&amp;nbsp; STYLE={WIDTH=12.0% JUST = L};&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINE STATE / DISPLAY STYLE={WIDTH=9% JUST = C};&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINE&amp;nbsp; COUNTY / DISPLAY&amp;nbsp;&amp;nbsp; STYLE={WIDTH=15.0% JUST = L};&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINE&amp;nbsp; TOTC / ANALYSIS STYLE={WIDTH=9% JUST = R};&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINEGENC / ANALYSIS STYLE={WIDTH=11% JUST = R};&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINE GENPCT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / DISPLAY&amp;nbsp; STYLE={WIDTH=9% JUST = R};&lt;/P&gt;&lt;P&gt;&amp;nbsp; DEFINE GENPCT / COMPUTED FORMAT=PERCENT9.2 STYLE={WIDTH=9% JUST = R };&lt;/P&gt;&lt;P&gt;&amp;nbsp; RBREAK AFTER / SUMMARIZE STYLE={FONT_STYLE=ROMAN} ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; COMPUTE GENPCT;&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF TOTC.SUM=0.00 THEN&amp;nbsp; DO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GENPCT=0.00;&lt;/P&gt;&lt;P&gt;&amp;nbsp; END;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ELSE DO;&lt;/P&gt;&lt;P&gt;&amp;nbsp; GENPCT=GENC.SUM/TOTC.SUM;&lt;/P&gt;&lt;P&gt;&amp;nbsp; END;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ENDCOMPUTE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; COMPUTE COUNTY;&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF&amp;nbsp; _BREAK_ = '_RBREAK_' then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNTY = '*ALL COUNTIES*';&lt;/P&gt;&lt;P&gt;&amp;nbsp; ENDCOMP;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMPUTE BEFORE _PAGE_&amp;nbsp; /style={asis=on font_face="Courier New" font_size=8PT&amp;nbsp; };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LINE @129 "PAGE~{nbspace 9}: ~{thispage}" ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDCOMP;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ODS PDF TEXT = "~S={JUST=L leftmargin=4.4IN FONT_SIZE=8PT FONT_FACE='Courier New'}~_~3n END&amp;nbsp; ";&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2012 14:31:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92117#M9364</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2012-04-23T14:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92118#M9365</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; I'm not sure when the page break routine kicks into action and increases the internal page number value. I don't know that I have ever tried to use ESCAPECHAR+{thispage} in a LINE statement such as you're trying. I have only used ESCAPECHAR+{thispage} in a TITLE or FOOTNOTE statement. The LINE statement "happens" inside the main portion of the document -- I just don't think of that as being the right place for page numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I can run the program below to see essentially the same behavior that you are observing and I think the fact that it doesn't work means that {thispage} doesn't resolve in the body of the document or inside the boundary of the report table -- somehow the 1 gets there because that is the beginning value of {thispage}, but it is not a dynamically generated value in the body of the document -- not in the same way it is put into the title or footnote area. It seems to me that the page number only populates in the traditional page number areas -- the top or bottom of the page. To me, that implies you are going to have to stick with using the page number in the TITLE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I can't envision a situation where the page number would look good sitting above the table, as you show. Also there is no such thing as using position pointer control (such as @129 in ODS PDF). Line pointer control, such as @129 only works really well in the LISTING window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I don't think there is a workaround for what you are trying to do. You might want to check with Tech Support -- but my recommendation would be to stick with {thispage} in the TITLE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;options nodate nonumber;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods escapechar='~';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf file='c:\temp\use_thispage.pdf';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.shoes nowd;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title j=r font='Courier New' h=8pt 'In title: PAGE: ~{thispage}';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column region product inventory sales;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute before _page_/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style={asis=on font_face="Courier New"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_size=8PT&amp;nbsp; };&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; LINE @129 "PAGE~{nbspace 9}: ~{thispage}" ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2012 03:49:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92118#M9365</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-04-24T03:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92119#M9366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i cannot use title as it will not print it where i want them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc report has a lot of limitations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my report i want to print county totals in the last page.I am using a dummy variable to force page break.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is printing the county totals for each page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you pleasr let me know how to avoid it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2012 18:24:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92119#M9366</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2012-04-24T18:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92120#M9367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are on the right way.&lt;/P&gt;&lt;P&gt;How do you break a new page ? by BREAK statement or LINE statement, they both can re-set sum be zero.&lt;/P&gt;&lt;P&gt;if you will post some sample data and code. I think Cynthia will give you answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 06:12:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92120#M9367</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-04-25T06:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92121#M9368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt; In your code, I did not see a dummy variable for breaking....is the code you posted the same as what you are describing? Here's your COLUMN statement&lt;/P&gt;&lt;P&gt; COLUMN SSN LASTNAME CITY STATE COUNTY&amp;nbsp; TOTC GENC GENPCT;&lt;/P&gt;&lt;P&gt;...which one of these is your dummy break variable??? Usually, when you want to do BREAK processing with a dummy variable, it is because you want to use the dummy variable with a BREAK statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do see that you have an RBREAK statement. The only way I have ever seen an RBREAK statement produce a summary line in the "wrong" place is when you have BY statements in your code -- since every BY group is treated as a whole entity, using BY with RBREAK can cause a summary line at the end of every BY group. But I don't see a BY statement in your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, my question to you is what does your data look like???? Which variable is your dummy variable??? Is the code you posted the same as the code that's not working? If you opened a track with Tech Support, they could look at all your code and all your data and help you with your exact program and your exact data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 12:55:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92121#M9368</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-04-25T12:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92122#M9369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your patience and support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the below code my dummy variable is BRK.It contains count of observations.When the count is 25 it will break the Page.I am using it to print page number also.I highlighted the dummy variable in BOLD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know ur opinion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;ods pdf file =xxxxxxx;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;PROC REPORT DATA=POP SPLIT='*'&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; STYLE(REPORT)={WIDTH=100% RULES=GROUP FRAME=VOID FONT_WEIGHT=MEDIUM FONT_SIZE=8PT&amp;nbsp; FONT_FACE = "Courier New" ASIS=ON }&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; STYLE(COLUMN)={BACKGROUND=WHITE FOREGROUND=black FONT_FACE="Courier New" FONT_WEIGHT=MEDIUM FONT_SIZE=8pt };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; COLUMN BRK SSN LASTNAME CITY STATE COUNTY&amp;nbsp; TOTC GENC GENPCT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; &lt;STRONG&gt;DEFINE BRK / ORDER NOPRINT &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE SSN / DISPLAY STYLE={WIDTH=10.0% JUST = L}&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE LASTNAME / DISPLAY STYLE={WIDTH=24.0% JUST = L};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE CITY / DISPLAY&amp;nbsp;&amp;nbsp; STYLE={WIDTH=12.0% JUST = L};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE STATE / DISPLAY STYLE={WIDTH=9% JUST = C};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE&amp;nbsp; COUNTY / DISPLAY&amp;nbsp;&amp;nbsp; STYLE={WIDTH=15.0% JUST = L};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE&amp;nbsp; TOTC / ANALYSIS STYLE={WIDTH=9% JUST = R};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINEGENC / ANALYSIS STYLE={WIDTH=11% JUST = R};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE GENPCT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / DISPLAY&amp;nbsp; STYLE={WIDTH=9% JUST = R};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE GENPCT / COMPUTED FORMAT=PERCENT9.2 STYLE={WIDTH=9% JUST = R };&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; RBREAK AFTER / SUMMARIZE STYLE={FONT_STYLE=ROMAN} ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;BREAK AFTER BRK / PAGE;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; COMPUTE GENPCT;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; IF TOTC.SUM=0.00 THEN&amp;nbsp; DO&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GENPCT=0.00;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; END;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; ELSE DO;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; GENPCT=GENC.SUM/TOTC.SUM;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; END;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; ENDCOMPUTE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; COMPUTE COUNTY;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; IF&amp;nbsp; _BREAK_ = '_RBREAK_' then&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNTY = '*ALL COUNTIES*';&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; ENDCOMP;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;COMPUTE BEFORE _PAGE_&amp;nbsp; /style={asis=on font_face="Courier New" font_size=8PT&amp;nbsp; };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; LINE @129 "PAGE~{nbspace 9}:" &lt;STRONG&gt;BRK&lt;/STRONG&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDCOMP;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RUN;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ODS PDF TEXT = "~S={JUST=L leftmargin=4.4IN FONT_SIZE=8PT FONT_FACE='Courier New'}~_~3n END&amp;nbsp; ";&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;ods pdf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 13:20:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92122#M9369</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2012-04-25T13:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92123#M9370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Thanks for posting the updated program. Now it comes down to your data. If you actually SHOW the values of BRK, what are they? I don't understand how BRK can be both a dummy page number AND a count of observations. When I use a fake page variable for breaking, every obs on page 1 has a value of 1, every obs for dummy page 2 has a value of 2, every obs for dummy page 3 has a value of 3, etc, etc -- this is not a count of observations. I know that I have posted code to create a dummy break variable before and there are examples posted elsewhere, too. I think you are close to what you want, although it seems a lot of work just to get the fake page number sitting on top of the table. You might still be able to work it out with the TITLE statement and {thispage} if you adjusted the outputwidth of the TITLE to be the same as the outputwidth of the table. I am on a plane today and not able to get to the computer with SAS -- so either double check your values for BRK and adjust them accordingly or try the TITLE approach again. You are removing most of the interior table lines, (something JOURNAL style would do too), so I believe that you could still make TITLE work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 14:14:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92123#M9370</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-04-25T14:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92124#M9371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you are right.It is not count of observations sorry about that.It contains value of 1 on first page and value of 2 on second page.I think in my case title will not work as you see in my code i have to print them in certain positions.Can i print title statement in the desired positions i want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have an example can you please post it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your support.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 14:34:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92124#M9371</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2012-04-25T14:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92125#M9372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;At airport and still not on computer, but here's the thing. IF @129 works at all it will be pure luck for positioning. Generally, pointer controls in your LINE statement do not work reliably with ODS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I will look for the posting. Generally i use BRKVAR or FAKEPG as var names so you might search for those.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there is even a Tech Support note that has code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AS far as absolute positioning like @129 with titles -- no, but i don't expect line to really reliably work either, you might find that the string wavers or shifts position frm page to page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 17:08:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92125#M9372</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-04-25T17:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92126#M9373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i want to print the summarized totals at the end of report for the three variables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; DEFINE&amp;nbsp; TOTC / ANALYSIS STYLE={WIDTH=9% JUST = R};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINEGENC / ANALYSIS STYLE={WIDTH=11% JUST = R};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE GENPCT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / DISPLAY&amp;nbsp; STYLE={WIDTH=9% JUST = R};&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; DEFINE GENPCT / COMPUTED FORMAT=PERCENT9.2 STYLE={WIDTH=9% JUST = R };&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;i want to print the summarized totals in the last page.When i am using dummy page variable to break the summarized totals are printing at the end of each page.How to avoid it and print it in the last page.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Can you please let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 17:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92126#M9373</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2012-04-25T17:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92127#M9374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The one i am trying to do is not possible in proc report i think.I tried different ways but it didn't work out.I think it is a big limitation in proc report.&lt;/P&gt;&lt;P&gt;If you have any solution how to print the summary totals in last page while using dummy variable to force page break&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 04:12:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92127#M9374</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2012-04-26T04:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92128#M9375</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; You can't have more than 1 DEFINE statement for an item. So your 2 DEFINES, both for GENPCT will be an issue. So that is one problem with your posted code. If you want to get a summary of any kind for GENPCT at the break, you will need to define it with SUM or ANALYSIS and get rid of the DEFINE with COMPUTED. Or, if GENPCT is NOT in the data and you truly are calculating it, then get rid of the DEFINE that says DISPLAY as the usage and leave the DEFINE with COMPUTED -- but only have 1 DEFINE statement for GENPCT. Any item on the COLUMN statement can have a COMPUTE block.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Honestly, I can't replicate your stated behavior. If I use the code below, which is putting exactly 35 obs on each page, using the PGCNTR variable, then I get a summarized line only at the BREAK.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I can't agree with you that PROC REPORT has BIG limitations. Yes, it does have limitations, but, as I remember, you wanted previously to apply a format to the SAS page number from {thispage} and that is not a limitation of PROC REPORT -- that is a limitation of ODS. The fact that you can make your own dummy page number and then use PROC REPORT to put that dummy page number on the report implies to me that PROC REPORT is quite powerful and flexible. There are some report generators that don't give you very much control over your headers and titles, so I think you have a lot of control.&lt;/P&gt;&lt;P&gt;&amp;nbsp; The fact that @129 might not work as you desire is not really a limitation of PROC REPORT, either. It is the difference between writing to the LISTING destination and writing to other ODS destinations. In the LISTING destination, your output "page" is like a piece of graph paper, where every tiny print position is exactly the same size and you can write to a fixed position because you know exactly how many characters will fit on a page, both horizontally and vertically. However, in the ODS world, some destinations, like HTML are not paged destinations, so there is no concept of a page or page breaks or page numbers. In other destinations, the letter 'i' takes up way less space on a printed line than the letter 'w':&lt;/P&gt;&lt;P&gt;iiiiiiiiii&lt;SPAN style="color: #ff0000;"&gt;i&lt;/SPAN&gt;iiiiiiiii&amp;nbsp; (20 'i')&lt;/P&gt;&lt;P&gt;wwwwwwwww&lt;SPAN style="color: #ff0000;"&gt;w&lt;/SPAN&gt;wwwwwwwwww (20 'w')&lt;/P&gt;&lt;P&gt;sssssssss&lt;SPAN style="color: #ff0000;"&gt;s&lt;/SPAN&gt;ssssssssss (20 's')&lt;/P&gt;&lt;P&gt;abcdefghi&lt;SPAN style="color: #ff0000;"&gt;j&lt;/SPAN&gt;klmnopqrst&amp;nbsp; (20 letters of the alphabet)&lt;/P&gt;&lt;P&gt;supercali&lt;SPAN style="color: #ff0000;"&gt;f&lt;/SPAN&gt;ragilisticexpealidocious&amp;nbsp; (random word with 34 characters)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, where is &lt;SPAN style="color: #ff0000;"&gt;@10&lt;/SPAN&gt; on every line???? Does it "line up"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I have attached screenshots that show just about everything your program does -- I didn't have any percent data, but I have a calculated page number in the COMPUTE BEFORE; I have a fake page break variable; and I have a summary line only on the last page.&lt;/P&gt;&lt;P&gt;&amp;nbsp; One difference between my program and yours is that I use a BREAK BEFORE PGCNTR -- because if I don't my summary line from the RBREAK will be on a separate page. But, I do NOT get a summary line on every page, as you can see from the screenshot of the end of page 1 and the start of page 2. Now, if you did a PROC PRINT on a data set created by PROC REPORT, you would see a line for every time you break (such as the COMPUTE BEFORE _PAGE_ and the BREAK) -- but I don't see OUT=.&lt;/P&gt;&lt;P&gt;&amp;nbsp; This may be an issue with something about your data or something else you're doing with your code. You might want to work with Tech Support on this one...I don't understand how your posted code is getting a summary on every page. I could understand it if you had a BY statement -- but I'm stumped.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data pageit;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; set sashelp.shoes(obs=100);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; retain pgcntr 1;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; output;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; if mod(_n_,35) = 0 then pgcntr +1;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;options nodate nonumber orientation=portrait&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; topmargin=1in bottommargin=1in&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; leftmargin=1in rightmargin=1in;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title; footnote;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf file='c:\temp\fake_page_break.pdf' notoc style=journal;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods escapechar='~';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=pageit nowd&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(report)={width=100% rules=group frame=void&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_weight=medium font_size=8pt&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_face="Courier New"} &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)={font_weight=medium font_size=8pt&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_face="Courier New"}&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={font_weight=medium font_size=8pt&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_face="Courier New"}; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column pgcntr region subsidiary product sales;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define pgcntr / order&amp;nbsp; /* NOPRINT */;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define region / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define subsidiary / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define product / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define sales / sum;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute before _page_ / &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style={font_face="Courier New"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font_size=8PT&amp;nbsp; just=r};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; LINE "PAGE~{nbspace 9}:" pgcntr;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; break before pgcntr / page ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; rbreak after / summarize style={font_weight=bold};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute after;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; region='All Counties';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf close;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11392i2FA1B4B5CB7BB98B/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="end_of_report.jpg" title="end_of_report.jpg" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11393iD113590576E628C1/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="bottom_page1.jpg" title="bottom_page1.jpg" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 14:33:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92128#M9375</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-04-26T14:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92129#M9376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I apologize for the inconvenience.I am a DATA _NULL_ guy may be due to the ease of that i commented on proc report.The problem i had is with data.Due to that it is creating summary for each page.It worked for me now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one last question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see my GEN_PCT which is my last column i am having that in my data.So i used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define GEN_PCT / ANALYSIS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i use summarize in the bottom of the report it is adding up and displaying the percentage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Genpct&lt;/P&gt;&lt;P&gt;90.00%&lt;/P&gt;&lt;P&gt;50.00%&lt;/P&gt;&lt;P&gt;30.00%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;170%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is displaying 170 %. So then i used this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFINE GENPCT / DISPLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Computer after&lt;/P&gt;&lt;P&gt;county='all counties'&lt;/P&gt;&lt;P&gt;if totc.sum=0&lt;/P&gt;&lt;P&gt;then do;&lt;/P&gt;&lt;P&gt;genpct=0;&lt;/P&gt;&lt;P&gt;else do;&lt;/P&gt;&lt;P&gt;genpct=genc/totc;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please let me know ur opinion.&lt;/P&gt;&lt;P&gt;endcomp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i do this it is not displaying any value in the summary line of GENPCT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is displaying like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Genpct&lt;/P&gt;&lt;P&gt;90.00%&lt;/P&gt;&lt;P&gt;50.00%&lt;/P&gt;&lt;P&gt;30.00%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is not printing any value it is leaving it blank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 16:22:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92129#M9376</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2012-04-26T16:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92130#M9377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got it.i used a compute block.i am getting the result i want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 17:48:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92130#M9377</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2012-04-26T17:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT HELP - PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92131#M9378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Ah, good to know! I thought the COMPUTE block would be the solution -- either that or something with your data. Glad you got it working!&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 23:04:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URGENT-HELP-PROC-REPORT/m-p/92131#M9378</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-04-26T23:04:26Z</dc:date>
    </item>
  </channel>
</rss>

