<?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 ACROSS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-ACROSS/m-p/433752#M68819</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Consider this example. SASHELP.CLASS is a file of 19 observations. You should be able to run this code and observe the difference between the ACROSS usage for the SEX variable and using GROUP as the usage. Basically, ACROSS usage makes a column going across the report row for each unique value of the variable that has the ACROSS usage specified.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class;
  column age sex height;
  define age / group;
  define sex / group;
  define height / mean "Avg Height";
run;
 
proc report data=sashelp.class;
  column age sex,height;
  define age / group;
  define sex / across;
  define height / mean "Avg Height";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Basi &lt;/P&gt;</description>
    <pubDate>Sat, 03 Feb 2018 02:59:10 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-02-03T02:59:10Z</dc:date>
    <item>
      <title>Proc report ACROSS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-ACROSS/m-p/433732#M68815</link>
      <description>&lt;P&gt;what is the purpose of ACROSS variable of define in PROC REPORT? can any one explain with an example.&amp;nbsp;thanks in advance.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 00:26:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-ACROSS/m-p/433732#M68815</guid>
      <dc:creator>VISHNU239</dc:creator>
      <dc:date>2018-02-03T00:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report ACROSS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-ACROSS/m-p/433752#M68819</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Consider this example. SASHELP.CLASS is a file of 19 observations. You should be able to run this code and observe the difference between the ACROSS usage for the SEX variable and using GROUP as the usage. Basically, ACROSS usage makes a column going across the report row for each unique value of the variable that has the ACROSS usage specified.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class;
  column age sex height;
  define age / group;
  define sex / group;
  define height / mean "Avg Height";
run;
 
proc report data=sashelp.class;
  column age sex,height;
  define age / group;
  define sex / across;
  define height / mean "Avg Height";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Basi &lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 02:59:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-ACROSS/m-p/433752#M68819</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-02-03T02:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report ACROSS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-ACROSS/m-p/433754#M68820</link>
      <description>&lt;P&gt;The documentation has a good example here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=n1pl56sdqo09cyn1fifuhcz8dl2f.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n1pl56sdqo09cyn1fifuhcz8dl2f" target="_blank"&gt;http://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=n1pl56sdqo09cyn1fifuhcz8dl2f.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n1pl56sdqo09cyn1fifuhcz8dl2f&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 04:03:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-ACROSS/m-p/433754#M68820</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-03T04:03:19Z</dc:date>
    </item>
  </channel>
</rss>

