<?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: Creating percentages in PROC REPORT in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133332#M10874</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, you're right. I've used an old code which uses a table in which the percentages are already incorporated (in 2 columns). Since I'm facing the problem of creating the same outcome with another dataset right now (which &lt;STRONG&gt;has not&lt;/STRONG&gt; the computed percentages in it I now see), I have to come up with another solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I'm dealing with work related data / queries, I have renamed the variables. But... not all of them supposedly. This explains the strange non-excisting contexts. Thanks for your extensive reply and your effort: I'm going to follow the link you've provided to get this going&lt;SPAN style="color: #000080; font-family: 'Trebuchet MS', arial, sans-serif;"&gt;&lt;STRONG&gt;!&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Mar 2013 08:59:00 GMT</pubDate>
    <dc:creator>Wouter</dc:creator>
    <dc:date>2013-03-14T08:59:00Z</dc:date>
    <item>
      <title>Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133330#M10872</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;What I'm heading for, is an overview with monthly figures (given already by DB), along with 2 kinds of percentages: total, and per period. I can't get those percentages right (they appear as missing). As far as I can see, the code should work (but... it doesn't). Can anybody have a look what's wrong? Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=SELECTIE2&lt;/P&gt;&lt;P&gt;nowindows missing headline headskip;&lt;/P&gt;&lt;P&gt;column PRODUCTION_MONTH bucket MONTH_ON_BOOK pct_state percent&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;define PRODUCTION_MONTH / group;&lt;/P&gt;&lt;P&gt;define bucket / group;&lt;/P&gt;&lt;P&gt;define MONTH_ON_BOOK / n;&lt;/P&gt;&lt;P&gt;define pct_state / '% of Production Month';&lt;/P&gt;&lt;P&gt;define percent / '% of Total';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;break after PRODUCTION_MONTH/ol summarize;&lt;/P&gt;&lt;P&gt;compute after PRODUCTION_MONTH;&lt;/P&gt;&lt;P&gt;&amp;nbsp; item=catt(PRODUCTION_MONTH,' Total');&lt;/P&gt;&lt;P&gt;&amp;nbsp; PRODUCTION_MONTH = '';&lt;/P&gt;&lt;P&gt;&amp;nbsp; line @1 ' ';&lt;/P&gt;&lt;P&gt;endcomp;&lt;/P&gt;&lt;P&gt;rbreak after / ol summarize;&lt;/P&gt;&lt;P&gt;compute after;&lt;/P&gt;&lt;P&gt;&amp;nbsp; involved = 'Grand Total';&lt;/P&gt;&lt;P&gt;endcomp;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 14:31:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133330#M10872</guid>
      <dc:creator>Wouter</dc:creator>
      <dc:date>2013-03-13T14:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133331#M10873</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 am confused by several things in your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) You reference a variable called INVOLVED in your COMPUTE AFTER block, but I do not see a variable named INVOLVED in your COLUMN statement. Is INVOLVED a temporary variable? Where do you use it? What is the purpose of the COMPUTE AFTER?&lt;/P&gt;&lt;P&gt;2) Same thing with your assignment statement for ITEM. It's not in the COLUMN statement. It looks like the kind of subtotal string where you append the text 'Total' to the value of your GROUP variable. But I only see PRODUCTION_MONTH and BUCKET as GROUP items on the report. Why are you assigning a value to ITEM in one COMPUTE block and to INVOLVED in the other COMPUTE block?&lt;/P&gt;&lt;P&gt;3) PCT_STATE and PCT have no usage, therefore their default usage is the SUM statistic (if they are numeric?) or DISPLAY (if they are character?)&lt;/P&gt;&lt;P&gt;4) Did you "pre-summarize" and calculate the percents or did you want PROC REPORT to do the percents for you. Just naming a report item "percent" or "pct" won't make PROC REPORT calculate a percent. Especially if you don't use the PCTN statistic or compute one yourself.&lt;/P&gt;&lt;P&gt;5) You say that "as far as you can see the code should work" Has any code such as this worked in the past to correctly give you percents and percent of subgroup?&lt;/P&gt;&lt;P&gt;6) You did not provide any data in order for anyone to try to run code. Without data, looking at the program isn't going to help much.&lt;/P&gt;&lt;P&gt;7) Why do you have PRODUCTION_MONTH=' '; in the COMPUTE AFTER PRODUCTION_MONTH? The SUPPRESS option on the BREAK statement will suppress or blank out the value for that item on the break line.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; If you are NOT pre-summarizing and calculating for PCT_STATE and PCT, where are your PROC REPORT COMPUTE blocks to calculate those numbers?&lt;/P&gt;&lt;P&gt;9) You show the use of LISTING options like OL and HEADLINE/HEADSKIP -- these will be ignored by ODS destinations except for LISTING. What is your destination of choice for this report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There have been previous forum postings on the calculating percents in PROC REPORT (such as this one &lt;A _jive_internal="true" href="https://communities.sas.com/message/149754#149754"&gt;https://communities.sas.com/message/149754#149754&lt;/A&gt;) with links to other papers that also discuss percentages. I would recommend that you start there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 02:09:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133331#M10873</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-03-14T02:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133332#M10874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, you're right. I've used an old code which uses a table in which the percentages are already incorporated (in 2 columns). Since I'm facing the problem of creating the same outcome with another dataset right now (which &lt;STRONG&gt;has not&lt;/STRONG&gt; the computed percentages in it I now see), I have to come up with another solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I'm dealing with work related data / queries, I have renamed the variables. But... not all of them supposedly. This explains the strange non-excisting contexts. Thanks for your extensive reply and your effort: I'm going to follow the link you've provided to get this going&lt;SPAN style="color: #000080; font-family: 'Trebuchet MS', arial, sans-serif;"&gt;&lt;STRONG&gt;!&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 08:59:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133332#M10874</guid>
      <dc:creator>Wouter</dc:creator>
      <dc:date>2013-03-14T08:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133333#M10875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, thank you for your extensive reply! The query I've used, was used before on another dataset. In this dataset, the percentages were already incorporated (2 columns). Right now, I'm dealing with another dataset which has not any percentages in it (I see now). The strange non-excisting connections (variables) are coming from the changes I've made to the code (since I'm dealing with company data / queries) --&amp;gt; these are not very useful in this one... I'm sorry for the inconvenience!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thank you for the link --&amp;gt; I'm going to change the query based on the new dataset which contains no extra info regarding %.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 09:05:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133333#M10875</guid>
      <dc:creator>Wouter</dc:creator>
      <dc:date>2013-03-14T09:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133334#M10876</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;One question again! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I've created the query which deliveres the desired output as wanted, but...below the column named 'BUCKET' the number of xxx is vissible (made all unreadable -&amp;gt; company data, except for 2 figures to give you an idea of what is was I wanted. Do you know how I can rename this column (so BUCKET = nr. of xxx)? Thanks in advance for your answer!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've used the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=xxx nowd &lt;/P&gt;&lt;P&gt; out=outpct split='*';&lt;/P&gt;&lt;P&gt; column PRODUCTION_MONTH bucket Bucket=wtn percnt tpercnt;&lt;/P&gt;&lt;P&gt; define PRODUCTION_MONTH / group ;&lt;/P&gt;&lt;P&gt; define bucket / group format=buckets. 'Bucket*name' order=internal;&lt;/P&gt;&lt;P&gt; define MONTH_ON_BOOK / n;&lt;/P&gt;&lt;P&gt; define percnt / computed format=percent8.2 &lt;/P&gt;&lt;P&gt; 'Percent by *PRODUCTION_MONTH';&lt;/P&gt;&lt;P&gt; define tpercnt / computed format=percent8.2 &lt;/P&gt;&lt;P&gt; 'Percent*Total';&lt;/P&gt;&lt;P&gt;compute before; &lt;/P&gt;&lt;P&gt; totcount = wtn;&lt;/P&gt;&lt;P&gt; endcomp;&lt;/P&gt;&lt;P&gt;compute before PRODUCTION_MONTH; &lt;/P&gt;&lt;P&gt; count = wtn;&lt;/P&gt;&lt;P&gt; endcomp;&lt;/P&gt;&lt;P&gt;compute percnt; &lt;/P&gt;&lt;P&gt; percnt= wtn/count;&lt;/P&gt;&lt;P&gt; endcomp;&lt;/P&gt;&lt;P&gt;compute tpercnt; &lt;/P&gt;&lt;P&gt; tpercnt= wtn/totcount;&lt;/P&gt;&lt;P&gt; endcomp;&lt;/P&gt;&lt;P&gt;compute after PRODUCTION_MONTH; &lt;/P&gt;&lt;P&gt; percnt= wtn/count;&lt;/P&gt;&lt;P&gt; tpercnt= wtn/totcount;&lt;/P&gt;&lt;P&gt; endcomp;&lt;/P&gt;&lt;P&gt; break after PRODUCTION_MONTH / suppress summarize dol skip;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="test.bmp" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/3180_test.bmp" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 10:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133334#M10876</guid>
      <dc:creator>Wouter</dc:creator>
      <dc:date>2013-03-14T10:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133335#M10877</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; It looks to me like BUCKET is a GROUP variable. You cannot ask for a GROUP variable to use a STATISTIC. And, I'm not sure what you mean when you say you want rename the BUCKET to show the number of XXX??? Do you know the number of XXX? Headers are put on the report before the data, so you already know how to rename a column header:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DEFINE varname / usage "The Label";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Somehow, I think I am missing something about what you need to do. You say that the "number of XXX is vissible" (I assume on each row?) The other thing I don't understand is why you have BUCKET=WTN on your COLUMN statement. Generally, if WTN (the alias for BUCKET) is an aliase for BUCKET, you would also have a DEFINE statement for it. But if you intend for WTN to be a temporary variable, then it would not appear on the COLUMN statement. Can you explain? If you don't want to see BUCKET=WTN at all, you can use NOPRINT in the DEFINE. If you want to change the header of BUCKET=WTN, then you need a DEFINE statement for WTN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If your data is too confidential to post a sample of data, then your best bet for help is to work with Tech Support&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; And, as I explained before, since you are using HTML or SASReport or PDF or RTF for your output, the options of HEADLINE, HEADSKIP, OL are ignored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 14:21:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133335#M10877</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-03-14T14:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133336#M10878</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;Thanks for your reply. I've renamed the original datafile (yeah, my employer is quite strict...) to xxx, so you could see 'xxx' as a datasource. That's all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The outcome of the file is exactly what I need, see the example (and the 'Percent by productionmonth of 201210 and the percenttotal, which are not 'blurred'). Only, the variable Bucket is mentioned twice (once as defined, as a text, but secondly as a number. I need this number indeed (a total of applications), but I can't change the header. Besides the part below, the variable Bucket is already defined so it can't be defined again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I need the colomn which is now called "BUCKET" (since I need these numbers), but preferably with another header name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file itself is also based on an example given by one of the white papers (how to present % in your Proc Report)...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 14:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133336#M10878</guid>
      <dc:creator>Wouter</dc:creator>
      <dc:date>2013-03-14T14:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133337#M10879</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; There are other ways to get counts and statistics. Aliases in PROC REPORT are very easy to use, once you understand that you have better luck with aliases and numeric variables to get different statistics. Once BUCKET is declared as GROUP, you cannot change the usage, so an alias for BUCKET doesn't make much sense. For example, in the code below, once I declare PRODTYPE to be GROUP, then the alias P2 can't be given any other usage. However, see the example below, using SASHELP.PRDSALE, it doesn't have percentages, but does make use of aliases and statistics to get counts and other statistics. Perhaps this will give you some ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods listing close;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods html file='c:\temp\prdsale.html' style=analysis;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.prdsale nowd;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; where country='CANADA' and region='EAST';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column country division prodtype prodtype=p2 n actual=cntrows actual actual=actmean;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define country / group 'The country';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define division / group 'The Division';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define prodtype / group 'The product type';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define p2 / group 'Alias = something else';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define n / 'Use Statistic N for Count';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define cntrows / n 'Get Count of Numeric variable' f=6.;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define actual / sum 'Total Sales';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define actmean / mean 'Avg Amt';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; rbreak after / summarize;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute after;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; country='Total';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; division='Group';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; prodtype='Group';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; p2 = 'Alias';&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;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10892iAFFFA508CA28282B/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="use_alias_report.png" title="use_alias_report.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 15:23:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133337#M10879</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-03-14T15:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating percentages in PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133338#M10880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! I'll get on to it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 15:43:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Creating-percentages-in-PROC-REPORT/m-p/133338#M10880</guid>
      <dc:creator>Wouter</dc:creator>
      <dc:date>2013-03-14T15:43:42Z</dc:date>
    </item>
  </channel>
</rss>

