<?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: Analysis variables in SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278999#M56202</link>
    <description>&lt;P&gt;screen shot attached.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12677iD4EA7CAA97633C98/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="screenshot.png" title="screenshot.png" /&gt;</description>
    <pubDate>Tue, 21 Jun 2016 12:32:49 GMT</pubDate>
    <dc:creator>aarathi</dc:creator>
    <dc:date>2016-06-21T12:32:49Z</dc:date>
    <item>
      <title>Analysis variables in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278977#M56191</link>
      <description>&lt;P&gt;While using the Analysis variable in SAS, this variable heading automatically displayed in report. how to remove this heading. This is My code :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=Work.Channelsummary Spanrows style(header)=[bordercolor=BLACK 
		background=#97291E foreground=white font=(zurichbt, 8pt) 
		font_weight=bold ] style(report)=[bordercolor=black borderwidth=1pt 
		font=(zurichbt, 8pt)] style(column)=[background=#FFFFFF bordercolor=#000000 
		font=(zurichbt, 8pt) vjust=middle 
		cellheight=.10in ] style(summary)=[font_face=White] center split='_';
	column('State &amp;amp; RH Channel Wise Summary :' Zone RHName)(('Total Allocation' 
		ChannelAllocation1, TotalCount))('Resolved' ChannelAllocation1, 
		TRCount)('Part Payment' ChannelAllocation1, PPCount)('Resolution %' 
		ChannelAllocation1, Resolved);

	/*row ('' Resolution)('TOTAL' COUNT ELB); */
	define Zone / 'Zone' group;
	define RHName / 'RH Name' group;
	define ChannelAllocation1 / group across;
	define TotalCount / analysis sum Width=5 center;
	define TRCount / analysis sum Width=5 center;
	define PPCount / analysis sum Width=5 center;
	rbreak before / summarize;
	compute before;

		if _break_='_RBREAK_' then
			do Zone="Total";
				call define (_row_, 'style', 'style=[background=CXFF8000 foreground=Black bordercolor=black font=(ZurichBt,8pt)font_weight=bold]');
			end;
	endcomp;
	define ChannelAllocation1 / across;
	define Resolved / analysis format=Percent11.0 center;
run;

title1;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278977#M56191</guid>
      <dc:creator>aarathi</dc:creator>
      <dc:date>2016-06-21T11:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis variables in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278983#M56195</link>
      <description>&lt;P&gt;Please use the "little running man" symbol to open a window for entering SAS code, and copy/paste the code there from EG (or Studio). The way you posted your code, it has no formatting at all.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:42:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278983#M56195</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-21T11:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis variables in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278984#M56196</link>
      <description>&lt;P&gt;Formatted code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report
  data=Work.Channelsummary
  Spanrows
  style(header)=[
    bordercolor=BLACK
    background=#97291E
    foreground=white
    font=(zurichbt,8pt)
    font_weight=bold
  ]
  style(report)=[
    bordercolor=black
    borderwidth=1pt
    font=(zurichbt,8pt)
  ]
  style(column)=[
    background=#FFFFFF
    bordercolor=#000000
    font=(zurichbt,8pt)
    vjust=middle
    cellheight=.10in
  ]
  style(summary)=[
    font_face=White
  ]
  center
  split='_'
;
column
  ('State &amp;amp; RH Channel Wise Summary :' Zone RHName)
  (('Total Allocation' ChannelAllocation1,TotalCount))
  ('Resolved' ChannelAllocation1,TRCount)
  ('Part Payment' ChannelAllocation1,PPCount)
  ('Resolution %' ChannelAllocation1,Resolved)
;
/*row ('' Resolution)('TOTAL' COUNT ELB); */
define Zone / 'Zone' group;
define RHName / 'RH Name' group;
define ChannelAllocation1 / group across;
define TotalCount / analysis sum Width=5 center;
define TRCount / analysis sum Width=5 center;
define PPCount / analysis sum Width=5 center;
rbreak before / summarize;
compute before;
  if _break_ = '_RBREAK_'
  then do;
    Zone="Total";
    call define (_row_,'style', 'style=[background=CXFF8000 foreground=Black bordercolor=black font=(ZurichBt,8pt)font_weight=bold]' );
  end;
endcomp;
define ChannelAllocation1 / across;
define Resolved / analysis format=Percent11.0 center;
run;
title1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Could you please supply a piece of the report and indicate which element you want removed?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:47:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278984#M56196</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-21T11:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis variables in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278998#M56201</link>
      <description>&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12676i98B5676446DA30F3/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="screenshot.png" title="screenshot.png" /&gt;</description>
      <pubDate>Tue, 21 Jun 2016 12:32:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278998#M56201</guid>
      <dc:creator>aarathi</dc:creator>
      <dc:date>2016-06-21T12:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis variables in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278999#M56202</link>
      <description>&lt;P&gt;screen shot attached.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12677iD4EA7CAA97633C98/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="screenshot.png" title="screenshot.png" /&gt;</description>
      <pubDate>Tue, 21 Jun 2016 12:32:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/278999#M56202</guid>
      <dc:creator>aarathi</dc:creator>
      <dc:date>2016-06-21T12:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis variables in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/279018#M56208</link>
      <description>&lt;P&gt;Have you looked at the &lt;FONT face="courier new,courier"&gt;noheader&lt;/FONT&gt; option of &lt;FONT face="courier new,courier"&gt;proc report&lt;/FONT&gt;?&lt;/P&gt;
&lt;P&gt;For this, and how to supress individula column headers,&amp;nbsp;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Hide-PROC-Report-column-names/td-p/61639" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Hide-PROC-Report-column-names/td-p/61639&lt;/A&gt; might be interesting.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2016 13:13:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analysis-variables-in-SAS/m-p/279018#M56208</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-21T13:13:23Z</dc:date>
    </item>
  </channel>
</rss>

