<?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/426640#M105130</link>
    <description>&lt;P&gt;Have you tried the SPLIT = option on the PROC REPORT statement? Try setting it SPLIT = to something other than the default "/" so see if that gives you what you want.&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jan 2018 20:50:46 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2018-01-10T20:50:46Z</dc:date>
    <item>
      <title>Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426545#M105105</link>
      <description>&lt;P&gt;&lt;FONT color="#000000" face="Calibri" size="3"&gt;Hi, &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000" face="Calibri" size="3"&gt;I am using proc report to create report (table1.rtf). one of variable (armb_c) is expected to display as “ArmB/C”( expected output). However in my output, the “C” always goes down one line (My output). I know the “/” serve as a break in proc report. Is any way to keep the “ArmB/C” in same line? Please see detail in attached file. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000" face="Calibri" size="3"&gt;Thanks &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 16:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426545#M105105</guid>
      <dc:creator>Defense</dc:creator>
      <dc:date>2018-01-10T16:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426607#M105120</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes you are correct the "/" does serve as a break. I tried it without the / and just did "or" and was able to get the output that you are attempting to create.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code that I used:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=have NOWD;
	title1 "Table 1 Count of male subjects by arm";
	column Male Arma armb_c;
	define Male /display " Male" style=[cellwidth=4 just=c];
	define ArmA /display " Arm A /(N)"  style=[just=c];
	define armb_c /display "Arm B or C/(N)" style=[just=c];
	compute after /style=[just=l];
		line "Count of male subjects by arm";
	endcomp;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is the location of our documentation that might be more useful: &lt;A href="http://go.documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p0bqogcics9o4xn17yvt2qjbgdpi.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://go.documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p0bqogcics9o4xn17yvt2qjbgdpi.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Samantha&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 19:17:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426607#M105120</guid>
      <dc:creator>sabisw</dc:creator>
      <dc:date>2018-01-10T19:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426640#M105130</link>
      <description>&lt;P&gt;Have you tried the SPLIT = option on the PROC REPORT statement? Try setting it SPLIT = to something other than the default "/" so see if that gives you what you want.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 20:50:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426640#M105130</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-01-10T20:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426694#M105159</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;It doesn't work when I apply to really project. &amp;nbsp;Let me figure out&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 21:53:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426694#M105159</guid>
      <dc:creator>Defense</dc:creator>
      <dc:date>2018-01-10T21:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426695#M105160</link>
      <description>&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;Yes, I tried, but it doesn't work out. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 21:54:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426695#M105160</guid>
      <dc:creator>Defense</dc:creator>
      <dc:date>2018-01-10T21:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426759#M105184</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;But the client prefer "B/C"&amp;nbsp; not "B or C"&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 04:18:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/426759#M105184</guid>
      <dc:creator>Defense</dc:creator>
      <dc:date>2018-01-11T04:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/427516#M105454</link>
      <description>&lt;P&gt;I figure out it works&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jan 2018 14:42:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report/m-p/427516#M105454</guid>
      <dc:creator>Defense</dc:creator>
      <dc:date>2018-01-14T14:42:02Z</dc:date>
    </item>
  </channel>
</rss>

