<?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: proc report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/576541#M163203</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tbl1;
input ID t $ X Y;
cards;
1 a 10 200
2 a 20 200
3 b 30 200
4 b 40 200
5 c 50 200
6 d 50 200
;
run;

proc report data=tbl1 nowd;
column t y x z;
define t/group;
define y/group noprint;
define x/analysis sum;
define z/computed;
compute z/character length=20;
 z=catx('/',x.sum,y);
endcomp;
compute after ;
 t='total';z=' ';
endcomp;
rbreak after/summarize;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 25 Jul 2019 11:43:58 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2019-07-25T11:43:58Z</dc:date>
    <item>
      <title>proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/576514#M163191</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;The question is about proc report&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tbl1;
input ID t $ X Y;
cards;
1 a 10 200
2 a 20 200
3 b 30 200
4 b 40 200
5 c 50 200
6 d 50 200
;
run;

/*Desired output by using proc report*/
a      30   30/200
b      70   70/200
c      100  100/200
Total  200  empty cel&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Jul 2019 09:40:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/576514#M163191</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-07-25T09:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/576541#M163203</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tbl1;
input ID t $ X Y;
cards;
1 a 10 200
2 a 20 200
3 b 30 200
4 b 40 200
5 c 50 200
6 d 50 200
;
run;

proc report data=tbl1 nowd;
column t y x z;
define t/group;
define y/group noprint;
define x/analysis sum;
define z/computed;
compute z/character length=20;
 z=catx('/',x.sum,y);
endcomp;
compute after ;
 t='total';z=' ';
endcomp;
rbreak after/summarize;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Jul 2019 11:43:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/576541#M163203</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-07-25T11:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/576543#M163204</link>
      <description>&lt;P&gt;So, it helps when you provide examples that cover a range of situations. In your data, is Y always equal to 200, or can it take on other values?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why does your output data set not contain D?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 11:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/576543#M163204</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-07-25T11:48:43Z</dc:date>
    </item>
  </channel>
</rss>

