<?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: OUTPUT PROCEDURE in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7463#M99</link>
    <description>Hi, &lt;BR /&gt;
  I think you probably want PROC REPORT. Or, you could do it all in a DATA step.&lt;BR /&gt;
See the following code.&lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
   &lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods html file='c:\temp\outtable.html' style=sasweb;&lt;BR /&gt;
   &lt;BR /&gt;
title 'Data Step Output';&lt;BR /&gt;
Data Example;&lt;BR /&gt;
  infile datalines;&lt;BR /&gt;
  Input LastName $3. Region $1. Units CostX CostY CostZ;&lt;BR /&gt;
  file print ods=(variables=(Region CostX_U CostY_U CostZ_U));&lt;BR /&gt;
  costx_u = costx / units;&lt;BR /&gt;
  costy_u = costy / units;&lt;BR /&gt;
  costz_u = costz / units;&lt;BR /&gt;
  put _ods_;&lt;BR /&gt;
return;&lt;BR /&gt;
Datalines;&lt;BR /&gt;
XBL0 219 157 66 47&lt;BR /&gt;
PYG0 674 665 54 23&lt;BR /&gt;
MPA0 740 269 47 98&lt;BR /&gt;
RJE1 177 136 74 36&lt;BR /&gt;
MTN1 518 671 43 93&lt;BR /&gt;
RJE1 625 762 73 93&lt;BR /&gt;
NWG2 197 393 98 16&lt;BR /&gt;
RTS2 341 648 26 18&lt;BR /&gt;
HCP2 834 116 36 49&lt;BR /&gt;
;&lt;BR /&gt;
Run;&lt;BR /&gt;
    &lt;BR /&gt;
title 'Proc Report Output';&lt;BR /&gt;
proc report data=example nowd;&lt;BR /&gt;
  column region costx costy costz units costx_u costy_u costz_u;&lt;BR /&gt;
  define region / display;&lt;BR /&gt;
  define costx / noprint;&lt;BR /&gt;
  define costy / noprint;&lt;BR /&gt;
  define costz / noprint;&lt;BR /&gt;
  define units / noprint;&lt;BR /&gt;
  define costx_u / computed "CostX / Units";&lt;BR /&gt;
  define costy_u / computed "CostY / Units";&lt;BR /&gt;
  define costz_u / computed "CostZ / Units";&lt;BR /&gt;
  compute costx_u;&lt;BR /&gt;
    costx_u = costx.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute costy_u;&lt;BR /&gt;
    costy_u = costy.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute costz_u;&lt;BR /&gt;
    costz_u = costz.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
   &lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
[/pre]</description>
    <pubDate>Thu, 13 Mar 2008 18:04:02 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2008-03-13T18:04:02Z</dc:date>
    <item>
      <title>OUTPUT PROCEDURE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7462#M98</link>
      <description>Hi everyone, I’m very new to SAS but have some analysis that is helping me improve my knowledge. I’m trying to produce a table that generates a value(s) that is derived from a dataset. The following code generates the dataset&lt;BR /&gt;
&lt;BR /&gt;
Data Example;&lt;BR /&gt;
Input LastName $3. Region $1. Units CostX  CostY  CostZ;&lt;BR /&gt;
&lt;BR /&gt;
Datalines;&lt;BR /&gt;
XBL0	219	157	66	47&lt;BR /&gt;
PYG0	674	665	54	23&lt;BR /&gt;
MPA0	740	269	47	98&lt;BR /&gt;
RJE1	177	136	74	36&lt;BR /&gt;
MTN1	518	671	43	93&lt;BR /&gt;
RJE1	625	762	73	93&lt;BR /&gt;
NWG2	197	393	98	16&lt;BR /&gt;
RTS2	341	648	26	18&lt;BR /&gt;
HCP2	834	116	36	49&lt;BR /&gt;
Run;&lt;BR /&gt;
&lt;BR /&gt;
So with the dataset example, I’m trying to get a table that gives me an output table that has a sorting by region and gives result for CostX/Units, CostY/Units and CostY/Units. &lt;BR /&gt;
&lt;BR /&gt;
I expect it look something like this&lt;BR /&gt;
&lt;BR /&gt;
Region	CostX/Units	CostY/Units	CostY/Units&lt;BR /&gt;
1			&lt;BR /&gt;
2			&lt;BR /&gt;
3			&lt;BR /&gt;
 &lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Bee</description>
      <pubDate>Thu, 13 Mar 2008 17:02:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7462#M98</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-03-13T17:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: OUTPUT PROCEDURE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7463#M99</link>
      <description>Hi, &lt;BR /&gt;
  I think you probably want PROC REPORT. Or, you could do it all in a DATA step.&lt;BR /&gt;
See the following code.&lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
   &lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods html file='c:\temp\outtable.html' style=sasweb;&lt;BR /&gt;
   &lt;BR /&gt;
title 'Data Step Output';&lt;BR /&gt;
Data Example;&lt;BR /&gt;
  infile datalines;&lt;BR /&gt;
  Input LastName $3. Region $1. Units CostX CostY CostZ;&lt;BR /&gt;
  file print ods=(variables=(Region CostX_U CostY_U CostZ_U));&lt;BR /&gt;
  costx_u = costx / units;&lt;BR /&gt;
  costy_u = costy / units;&lt;BR /&gt;
  costz_u = costz / units;&lt;BR /&gt;
  put _ods_;&lt;BR /&gt;
return;&lt;BR /&gt;
Datalines;&lt;BR /&gt;
XBL0 219 157 66 47&lt;BR /&gt;
PYG0 674 665 54 23&lt;BR /&gt;
MPA0 740 269 47 98&lt;BR /&gt;
RJE1 177 136 74 36&lt;BR /&gt;
MTN1 518 671 43 93&lt;BR /&gt;
RJE1 625 762 73 93&lt;BR /&gt;
NWG2 197 393 98 16&lt;BR /&gt;
RTS2 341 648 26 18&lt;BR /&gt;
HCP2 834 116 36 49&lt;BR /&gt;
;&lt;BR /&gt;
Run;&lt;BR /&gt;
    &lt;BR /&gt;
title 'Proc Report Output';&lt;BR /&gt;
proc report data=example nowd;&lt;BR /&gt;
  column region costx costy costz units costx_u costy_u costz_u;&lt;BR /&gt;
  define region / display;&lt;BR /&gt;
  define costx / noprint;&lt;BR /&gt;
  define costy / noprint;&lt;BR /&gt;
  define costz / noprint;&lt;BR /&gt;
  define units / noprint;&lt;BR /&gt;
  define costx_u / computed "CostX / Units";&lt;BR /&gt;
  define costy_u / computed "CostY / Units";&lt;BR /&gt;
  define costz_u / computed "CostZ / Units";&lt;BR /&gt;
  compute costx_u;&lt;BR /&gt;
    costx_u = costx.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute costy_u;&lt;BR /&gt;
    costy_u = costy.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute costz_u;&lt;BR /&gt;
    costz_u = costz.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
   &lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Thu, 13 Mar 2008 18:04:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7463#M99</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-03-13T18:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: OUTPUT PROCEDURE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7464#M100</link>
      <description>Thanks Cynthia, It helped but I was hoping to have a summary by the region where all the observations that equal to region 0, 1 and 2 are summed and the Cost_X, Cost_Y and Cost_Z are obtained.&lt;BR /&gt;
Bee</description>
      <pubDate>Thu, 13 Mar 2008 18:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7464#M100</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-03-13T18:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: OUTPUT PROCEDURE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7465#M101</link>
      <description>Hi:&lt;BR /&gt;
  I don't know what you mean by &lt;BR /&gt;
"the Cost_X, Cost_Y and Cost_Z are obtained." ... but if you want to see theses 3 numbers on the report, then either add them to the variables= option or remove the NOPRINT from them in the PROC REPORT step (as shown below).&lt;BR /&gt;
&lt;BR /&gt;
But, summary lines are easy to produce with PROC REPORT.&lt;BR /&gt;
&lt;BR /&gt;
cynthia&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
&lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods html file='c:\temp\outtable.html' style=sasweb;&lt;BR /&gt;
&lt;BR /&gt;
title 'Data Step Output';&lt;BR /&gt;
Data Example;&lt;BR /&gt;
  length region $11;&lt;BR /&gt;
  infile datalines;&lt;BR /&gt;
  Input LastName $3. Region $1. Units CostX CostY CostZ;&lt;BR /&gt;
  file print ods=(variables=(Region CostX_U CostY_U CostZ_U));&lt;BR /&gt;
  costx_u = costx / units;&lt;BR /&gt;
  costy_u = costy / units;&lt;BR /&gt;
  costz_u = costz / units;&lt;BR /&gt;
  put _ods_;&lt;BR /&gt;
return;&lt;BR /&gt;
Datalines;&lt;BR /&gt;
XBL0 219 157 66 47&lt;BR /&gt;
PYG0 674 665 54 23&lt;BR /&gt;
MPA0 740 269 47 98&lt;BR /&gt;
RJE1 177 136 74 36&lt;BR /&gt;
MTN1 518 671 43 93&lt;BR /&gt;
RJE1 625 762 73 93&lt;BR /&gt;
NWG2 197 393 98 16&lt;BR /&gt;
RTS2 341 648 26 18&lt;BR /&gt;
HCP2 834 116 36 49&lt;BR /&gt;
;&lt;BR /&gt;
Run;&lt;BR /&gt;
&lt;BR /&gt;
title 'Proc Report Output';&lt;BR /&gt;
proc report data=example nowd&lt;BR /&gt;
     style(summary)=Header;&lt;BR /&gt;
  column region costx costy costz units newx_u newy_u newz_u;&lt;BR /&gt;
  define region / order;&lt;BR /&gt;
  define costx / 'CostX';&lt;BR /&gt;
  define costy / 'CostY;&lt;BR /&gt;
  define costz / 'CostZ';&lt;BR /&gt;
  define units / 'Units';&lt;BR /&gt;
  define newx_u / computed "CostX / Units";&lt;BR /&gt;
  define newy_u / computed "CostY / Units";&lt;BR /&gt;
  define newz_u / computed "CostZ / Units";&lt;BR /&gt;
  break after region / summarize;&lt;BR /&gt;
  rbreak after /summarize;&lt;BR /&gt;
  compute after region;&lt;BR /&gt;
    region = 'Total';&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute after;&lt;BR /&gt;
    region = 'All Regions';&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newx_u;&lt;BR /&gt;
    newx_u = costx.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newy_u;&lt;BR /&gt;
    newy_u = costy.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newz_u;&lt;BR /&gt;
    newz_u = costz.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
   &lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]</description>
      <pubDate>Thu, 13 Mar 2008 19:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7465#M101</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-03-13T19:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: OUTPUT PROCEDURE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7466#M102</link>
      <description>Sorry for not being clear on what I want. I'll try to explain a little more. The dataset 'example' is just a subset of a much larger dataset that has about 200 observations. The dataset 'example' has the following variables LastName  Region Units CostX CostY CostZ . I want a table that first sums all the Units, CostX, CostY and CostZ that fall under Region (0,1 and 2). Then the operations for CostX/Units, CostY/Units and CostZ/Units by Regions. So that the final output will be table that has Regions just the 3(0,1,2) and not all the 9 observations and not 200 in may larger dataset. The codes you gave still gives me all 9 observations.&lt;BR /&gt;
Thanks</description>
      <pubDate>Fri, 14 Mar 2008 14:23:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7466#M102</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-03-14T14:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: OUTPUT PROCEDURE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7467#M103</link>
      <description>I also think there is some error with code. I corrected a missing ' ,but there is still some error. Please could run the program to confirm.&lt;BR /&gt;
Thanks</description>
      <pubDate>Fri, 14 Mar 2008 14:48:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7467#M103</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-03-14T14:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: OUTPUT PROCEDURE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7468#M104</link>
      <description>Hi:&lt;BR /&gt;
  Thanks for pointing out that missing quote. I fixed it, but then neglected to save that version of the program to where I was cutting and pasting from.&lt;BR /&gt;
&lt;BR /&gt;
  I am still not clear on what you mean, exactly. PROC REPORT will do both DETAIL reports and SUMMARY reports. A detail report has one report row for every observation in the data set or subset. Any report with an ORDER usage (such as I have for REGION) will be a DETAIL report -- unless the data were pre-summarized. On the other hand, the second PROC REPORT, below has a usage of GROUP for REGION and I have 1 report row that represents the SUMMARY of all the rows for REGION=0, REGION=1, etc.&lt;BR /&gt;
 &lt;BR /&gt;
  Since the code is getting quite lengthy and since you have very specific formatting needs and data, you might consider contacting Tech Support for help with your specific report and the right PROC REPORT code to produce what you want.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods html file='c:\temp\outtable.html' style=sasweb;&lt;BR /&gt;
     &lt;BR /&gt;
title 'Data Step Output';&lt;BR /&gt;
Data Example;&lt;BR /&gt;
  length region $11;&lt;BR /&gt;
  infile datalines;&lt;BR /&gt;
  Input LastName $3. Region $1. Units CostX CostY CostZ;&lt;BR /&gt;
  file print ods=(variables=(Region CostX_U CostY_U CostZ_U));&lt;BR /&gt;
  costx_u = costx / units;&lt;BR /&gt;
  costy_u = costy / units;&lt;BR /&gt;
  costz_u = costz / units;&lt;BR /&gt;
  put _ods_;&lt;BR /&gt;
return;&lt;BR /&gt;
Datalines;&lt;BR /&gt;
XBL0 219 157 66 47&lt;BR /&gt;
PYG0 674 665 54 23&lt;BR /&gt;
MPA0 740 269 47 98&lt;BR /&gt;
RJE1 177 136 74 36&lt;BR /&gt;
MTN1 518 671 43 93&lt;BR /&gt;
RJE1 625 762 73 93&lt;BR /&gt;
NWG2 197 393 98 16&lt;BR /&gt;
RTS2 341 648 26 18&lt;BR /&gt;
HCP2 834 116 36 49&lt;BR /&gt;
;&lt;BR /&gt;
Run;&lt;BR /&gt;
    &lt;BR /&gt;
title 'Proc Report Detail Report';&lt;BR /&gt;
proc report data=example nowd&lt;BR /&gt;
     style(summary)=Header;&lt;BR /&gt;
  column region costx costy costz units newx_u newy_u newz_u;&lt;BR /&gt;
  define region / order;&lt;BR /&gt;
  define costx / 'CostX';&lt;BR /&gt;
  define costy / 'CostY';&lt;BR /&gt;
  define costz / 'CostZ';&lt;BR /&gt;
  define units / 'Units';&lt;BR /&gt;
  define newx_u / computed "CostX / Units";&lt;BR /&gt;
  define newy_u / computed "CostY / Units";&lt;BR /&gt;
  define newz_u / computed "CostZ / Units";&lt;BR /&gt;
  break after region / summarize;&lt;BR /&gt;
  rbreak after /summarize;&lt;BR /&gt;
  compute after;&lt;BR /&gt;
    region = 'All Regions';&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newx_u;&lt;BR /&gt;
    newx_u = costx.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newy_u;&lt;BR /&gt;
    newy_u = costy.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newz_u;&lt;BR /&gt;
    newz_u = costz.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
      &lt;BR /&gt;
title 'Proc Report Output Summary Report';&lt;BR /&gt;
proc report data=example nowd&lt;BR /&gt;
     style(summary)=Header;&lt;BR /&gt;
  column region costx costy costz units newx_u newy_u newz_u;&lt;BR /&gt;
  define region / group;&lt;BR /&gt;
  define costx / 'CostX';&lt;BR /&gt;
  define costy / 'CostY';&lt;BR /&gt;
  define costz / 'CostZ';&lt;BR /&gt;
  define units / 'Units';&lt;BR /&gt;
  define newx_u / computed "CostX / Units";&lt;BR /&gt;
  define newy_u / computed "CostY / Units";&lt;BR /&gt;
  define newz_u / computed "CostZ / Units";&lt;BR /&gt;
  &lt;BR /&gt;
  rbreak after /summarize;&lt;BR /&gt;
  compute after region;&lt;BR /&gt;
    region = 'Total';&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute after;&lt;BR /&gt;
    region = 'All Regions';&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newx_u;&lt;BR /&gt;
    newx_u = costx.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newy_u;&lt;BR /&gt;
    newy_u = costy.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute newz_u;&lt;BR /&gt;
    newz_u = costz.sum / units.sum;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
The code runs for me and I get 2 outputs in the LISTING window. as shown below:&lt;BR /&gt;
[pre]&lt;BR /&gt;
Detail Report&lt;BR /&gt;
&lt;BR /&gt;
Proc Report Detail Report             &lt;BR /&gt;
&lt;BR /&gt;
                                                               CostX      CostY      CostZ&lt;BR /&gt;
  region           CostX      CostY      CostZ      Units      Units      Units      Units&lt;BR /&gt;
  0                  157         66         47        219   0.716895  0.3013699  0.2146119&lt;BR /&gt;
                     665         54         23        674  0.9866469  0.0801187  0.0341246&lt;BR /&gt;
                     269         47         98        740  0.3635135  0.0635135  0.1324324&lt;BR /&gt;
  Total             1091        167        168       1633  0.6680955  0.1022658  0.1028781&lt;BR /&gt;
  1                  136         74         36        177  0.7683616  0.4180791  0.2033898&lt;BR /&gt;
                     671         43         93        518  1.2953668  0.0830116  0.1795367&lt;BR /&gt;
                     762         73         93        625     1.2192     0.1168     0.1488&lt;BR /&gt;
  Total             1569        190        222       1320  1.1886364  0.1439394  0.1681818&lt;BR /&gt;
  2                  393         98         16        197  1.9949239  0.4974619  0.0812183&lt;BR /&gt;
                     648         26         18        341  1.9002933  0.0762463  0.0527859&lt;BR /&gt;
                     116         36         49        834  0.1390887  0.0431655   0.058753&lt;BR /&gt;
  Total             1157        160         83       1372  0.8432945  0.1166181  0.0604956&lt;BR /&gt;
  All Regions       3817        517        473       4325  0.8825434  0.1195376  0.1093642&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
*******************************************************************&lt;BR /&gt;
Order Report&lt;BR /&gt;
Proc Report Output Summary Report                 &lt;BR /&gt;
                                                               CostX      CostY      CostZ&lt;BR /&gt;
  region           CostX      CostY      CostZ      Units      Units      Units      Units&lt;BR /&gt;
  0                 1091        167        168       1633  0.6680955  0.1022658  0.1028781&lt;BR /&gt;
  1                 1569        190        222       1320  1.1886364  0.1439394  0.1681818&lt;BR /&gt;
  2                 1157        160         83       1372  0.8432945  0.1166181  0.0604956&lt;BR /&gt;
  All Regions       3817        517        473       4325  0.8825434  0.1195376  0.1093642&lt;BR /&gt;
&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 14 Mar 2008 17:44:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7468#M104</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-03-14T17:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: OUTPUT PROCEDURE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7469#M105</link>
      <description>THANKS CYNTHIA</description>
      <pubDate>Fri, 14 Mar 2008 19:50:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/OUTPUT-PROCEDURE/m-p/7469#M105</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-03-14T19:50:54Z</dc:date>
    </item>
  </channel>
</rss>

