<?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, can you place descriptive text in a BREAK or RBREAK row? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431526#M106760</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
 length sex $ 40;
 set sashelp.class;
 sex=ifc(sex='F','Female','Male');
run;
proc report data=class nowd; 
    columns sex age height weight;
    define sex/group;
	define age/group;
    define height/analysis mean format=10.2 "Height Mean";
    define weight/analysis mean format=10.1 "Weight Mean";
	break after sex/summarize style=[font_style=italic];
	rbreak after/summarize style=[font_style=italic];
	compute after sex;
	  sex=catx(' ',sex,'Mean');
	endcomp;
	compute after;
	  sex=catx(' ','Overall','Mean');
	endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 27 Jan 2018 10:59:42 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2018-01-27T10:59:42Z</dc:date>
    <item>
      <title>PROC REPORT, can you place descriptive text in a BREAK or RBREAK row?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431401#M106712</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class;
    columns sex age height weight;
    define sex/group;
	define age/group;
    define height/analysis mean format=10.2 "Height Mean";
    define weight/analysis mean format=10.1 "Weight Mean";
	break after sex/summarize style=[font_style=italic];
	rbreak after/summarize style=[font_style=italic];
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I would like the BREAK rows to have the text at the left hand side in column 1 "Female Mean" or "Male Mean", and in the RBREAK row I'd like the text "Overall Mean". How can this be done?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 18:57:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431401#M106712</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-01-26T18:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: PROC REPORT, can you place descriptive text in a BREAK or RBREAK row?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431404#M106713</link>
      <description>Hi:&lt;BR /&gt;  You will need 2 COMPUTE blocks. Refer to the techniques shown in this paper: &lt;A href="https://www.sas.com/content/dam/SAS/support/en/technical-papers/SAS0431-2017.pdf" target="_blank"&gt;https://www.sas.com/content/dam/SAS/support/en/technical-papers/SAS0431-2017.pdf&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Fri, 26 Jan 2018 19:00:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431404#M106713</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-01-26T19:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: PROC REPORT, can you place descriptive text in a BREAK or RBREAK row?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431526#M106760</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
 length sex $ 40;
 set sashelp.class;
 sex=ifc(sex='F','Female','Male');
run;
proc report data=class nowd; 
    columns sex age height weight;
    define sex/group;
	define age/group;
    define height/analysis mean format=10.2 "Height Mean";
    define weight/analysis mean format=10.1 "Weight Mean";
	break after sex/summarize style=[font_style=italic];
	rbreak after/summarize style=[font_style=italic];
	compute after sex;
	  sex=catx(' ',sex,'Mean');
	endcomp;
	compute after;
	  sex=catx(' ','Overall','Mean');
	endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 27 Jan 2018 10:59:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-can-you-place-descriptive-text-in-a-BREAK-or-RBREAK/m-p/431526#M106760</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-01-27T10:59:42Z</dc:date>
    </item>
  </channel>
</rss>

