<?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 with groups across, statistics down? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433714#M20310</link>
    <description>&lt;P&gt;Ah, good old TABULATE.&amp;nbsp;&amp;nbsp; One of my favorite PROCs and that definitely will do what I want to do.&lt;/P&gt;</description>
    <pubDate>Fri, 02 Feb 2018 22:45:23 GMT</pubDate>
    <dc:creator>TimH</dc:creator>
    <dc:date>2018-02-02T22:45:23Z</dc:date>
    <item>
      <title>PROC Report with groups across, statistics down?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433543#M20305</link>
      <description>&lt;P&gt;I am sure this was probably asked before but I don't know which keywords to bring up what I want - I searched and got a lot of PROC REPORT ACROSS variable stuff but nothing fits just yet, so I'm entering a new message.&amp;nbsp; Here's what I want to do:&amp;nbsp;&amp;nbsp; I have datasets that have observations over time,&amp;nbsp; with an identifier, date, and various measurement variables.&amp;nbsp; I want to report,&amp;nbsp; paged or otherwise grouped by identifier, with each date a column, and each variable a row with the variable label on the left and the values under the date columns.&lt;BR /&gt;&lt;BR /&gt;What is the best way to go:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Summarize (if necessary) the observations by date, then do PROC TRANSPOSE and PROC PRINT&lt;/P&gt;
&lt;P&gt;2. PROC REPORT ?&lt;BR /&gt;&lt;BR /&gt;I am trying to figure out the latte but any and all advice is appreciated&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 14:44:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433543#M20305</guid>
      <dc:creator>TimH</dc:creator>
      <dc:date>2018-02-02T14:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report with groups across, statistics down?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433554#M20306</link>
      <description>&lt;P&gt;1).&amp;nbsp; Summarise your data, then do a proc transpose (note I don't use all uppercase!) then you have the option of doing either a proc print or a proc report on the data you have.&amp;nbsp; Personally I really don't like doing data manipulation in proc report which is a reporting procedure.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 15:12:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433554#M20306</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-02-02T15:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report with groups across, statistics down?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433564#M20307</link>
      <description>&lt;P&gt;See this example using some example data that you should have available:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc tabulate data=sashelp.class;
   class sex; /*your identifier role*/
   class age; /* your "across"*/
   var height weight; /*variables for statistics*/
   table sex,
         (height weight) * (mean max min std),
         age
   ;
run;&lt;/PRE&gt;
&lt;P&gt;The table statement can have 3 "dimensions" separated by commas. If all three are used the first is "page", the seconds is what goes in the row and the third is column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 15:23:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433564#M20307</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-02T15:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report with groups across, statistics down?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433714#M20310</link>
      <description>&lt;P&gt;Ah, good old TABULATE.&amp;nbsp;&amp;nbsp; One of my favorite PROCs and that definitely will do what I want to do.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 22:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-with-groups-across-statistics-down/m-p/433714#M20310</guid>
      <dc:creator>TimH</dc:creator>
      <dc:date>2018-02-02T22:45:23Z</dc:date>
    </item>
  </channel>
</rss>

