<?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: Beginner's report. in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74264#M8454</link>
    <description>Cynthia,&lt;BR /&gt;
&lt;BR /&gt;
I meant the &lt;B&gt;sum&lt;/B&gt; of individuals (the number of individuals) in Class 1.&lt;BR /&gt;
&lt;BR /&gt;
Bad english by me. Where I come from we talk rotvälska all the time.&lt;BR /&gt;
&lt;BR /&gt;
Anne</description>
    <pubDate>Wed, 18 Feb 2009 10:09:25 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-02-18T10:09:25Z</dc:date>
    <item>
      <title>Beginner's report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74261#M8451</link>
      <description>I am a SAS beginner.&lt;BR /&gt;
I have a SAS data table with columns:&lt;BR /&gt;
&lt;BR /&gt;
Identity (X?....?)&lt;BR /&gt;
Gender (1,2)   &lt;BR /&gt;
Class (1,2)&lt;BR /&gt;
Mark  (1,2,3,4,5)&lt;BR /&gt;
&lt;BR /&gt;
Variable Mark is numeric, the remaining of character type.&lt;BR /&gt;
&lt;BR /&gt;
I want to create a summary report with &lt;U&gt;&lt;B&gt;PROC REPORT&lt;/B&gt;&lt;/U&gt;.&lt;BR /&gt;
&lt;BR /&gt;
On the first line I would like to have the table total numbers for men(1), women(2) and total.&lt;BR /&gt;
On the third line Class 1 numbers.&lt;BR /&gt;
On lines 4-8 the number of individuals in Class 1 with different marks.&lt;BR /&gt;
&lt;BR /&gt;
On lines 10-15 Class 2 in the same way as Class 1.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
If I could get some help I would be most grateful.&lt;BR /&gt;
Best regards&lt;BR /&gt;
Anne</description>
      <pubDate>Tue, 17 Feb 2009 10:01:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74261#M8451</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-02-17T10:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner's report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74262#M8452</link>
      <description>Hi:&lt;BR /&gt;
  I don't understand what you mean by "class 1 numbers on third line" the rest of the description is clear.&lt;BR /&gt;
&lt;BR /&gt;
  cynthia</description>
      <pubDate>Tue, 17 Feb 2009 20:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74262#M8452</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-02-17T20:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner's report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74263#M8453</link>
      <description>Anne,&lt;BR /&gt;
&lt;BR /&gt;
Is this what you are looking for?&lt;BR /&gt;
&lt;BR /&gt;
PROC REPORT DATA=table NOWD;&lt;BR /&gt;
COLUMNS class identity mark gender,(N) overall;&lt;BR /&gt;
DEFINE class / GROUP;&lt;BR /&gt;
DEFINE identity / GROUP;&lt;BR /&gt;
DEFINE mark / GROUP;&lt;BR /&gt;
DEFINE gender / ACROSS;&lt;BR /&gt;
DEFINE overall / COMPUTED;&lt;BR /&gt;
COMPUTE overall;&lt;BR /&gt;
  overall = SUM(_c5_, _c6_);&lt;BR /&gt;
ENDCOMP;&lt;BR /&gt;
BREAK BEFORE class / SUMMARIZE;&lt;BR /&gt;
RBREAK BEFORE / SUMMARIZE;&lt;BR /&gt;
RUN;&lt;BR /&gt;
&lt;BR /&gt;
...............Phil</description>
      <pubDate>Wed, 18 Feb 2009 00:02:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74263#M8453</guid>
      <dc:creator>prholland</dc:creator>
      <dc:date>2009-02-18T00:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner's report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74264#M8454</link>
      <description>Cynthia,&lt;BR /&gt;
&lt;BR /&gt;
I meant the &lt;B&gt;sum&lt;/B&gt; of individuals (the number of individuals) in Class 1.&lt;BR /&gt;
&lt;BR /&gt;
Bad english by me. Where I come from we talk rotvälska all the time.&lt;BR /&gt;
&lt;BR /&gt;
Anne</description>
      <pubDate>Wed, 18 Feb 2009 10:09:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74264#M8454</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-02-18T10:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner's report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74265#M8455</link>
      <description>Thank you very much, Phil.&lt;BR /&gt;
&lt;BR /&gt;
Your example seems useful. I am working on it.&lt;BR /&gt;
&lt;BR /&gt;
Anne</description>
      <pubDate>Wed, 18 Feb 2009 10:11:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Beginner-s-report/m-p/74265#M8455</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-02-18T10:11:07Z</dc:date>
    </item>
  </channel>
</rss>

