<?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: Removing a column heading from a proc report in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/488771#M31577</link>
    <description>&lt;P&gt;How about to change "Display" to "Noprint" for them?&lt;/P&gt;
&lt;P&gt;//Fredrik&lt;/P&gt;</description>
    <pubDate>Wed, 22 Aug 2018 05:46:46 GMT</pubDate>
    <dc:creator>FredrikE</dc:creator>
    <dc:date>2018-08-22T05:46:46Z</dc:date>
    <item>
      <title>Removing a column heading from a proc report</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/488760#M31576</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following Proc Report code however I want to get rid of the second column with the heading name in it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way&amp;nbsp; I can do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Test;
input CombinedCode $ TotalJuly2018 RankedJuly2018	TotalJuly2017 RankedJuly2017 Total201718 Ranked201718;
datalines;
AAA 2288 15 564 20 12071 12
BBB . . 9 76 77 76
CCC 776 31 180 33 2349 32
DDD 1593 19 549 21 7265 18
EEE 2827 12 887 14 10997 14
FFF 1395 20 1463 9 11864 13
GGG 439 36 109 39 1795 34
HHH 9873 6 3151 6 42898 6
III 11 68 31 63 60 77
JJJ 376 37 119 38 1465 37
KKK . . 25 70 138 71
LLL 7 69 9 76 49 78
MMM 4132 9 1105 12 15367 10
NNN 293 41 87 46 1087 41
OOO 1053 27 . . 987 44
PPP 473 35 126 37 1451 38
;
run;



Proc Report data=Test;
	Column CombinedCode 
	('July 2018' ( TotalJuly2018,(pctsum) RankedJuly2018 TotalJuly2018)) 
	('July 2017' ( TotalJuly2017,(pctsum) RankedJuly2017 TotalJuly2017))
	('2017-18 Financial Year' ( Total201718,(pctsum) Ranked201718 Total201718))
	;


	Define CombinedCode / DIsplay;
	Define TotalJuly2018  / DIsplay 'Number of Exits' f=comma9.;
	Define RankedJuly2018 / DIsplay 'Ranking' order order=Internal;
	
	Define TotalJuly2017 / DIsplay f=comma9.;
	Define RankedJuly2017 / DIsplay;
	
	Define TotalJuly201718 / DIsplay f=comma20.;
	Define RankedJuly2017 / DIsplay;
	define pctsum / 'Percentage' format=percent7.1;


	rbreak after / ol summarize;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;which produces this and I would like Number of Exits, TotalJuly2017 and Total201718 not displaying in the report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Table.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22676iDB0F30936205442D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Table.JPG" alt="Table.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 03:31:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/488760#M31576</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-08-22T03:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a column heading from a proc report</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/488771#M31577</link>
      <description>&lt;P&gt;How about to change "Display" to "Noprint" for them?&lt;/P&gt;
&lt;P&gt;//Fredrik&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 05:46:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/488771#M31577</guid>
      <dc:creator>FredrikE</dc:creator>
      <dc:date>2018-08-22T05:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a column heading from a proc report</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/488775#M31578</link>
      <description>&lt;P&gt;I agree with &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13827"&gt;@FredrikE&lt;/a&gt; please try to use noprint as in the code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
Proc Report data=Test;
	Column CombinedCode 
	('July 2018' ( TotalJuly2018,(pctsum) RankedJuly2018 TotalJuly2018)) 
	('July 2017' ( TotalJuly2017,(pctsum) RankedJuly2017 TotalJuly2017))
	('2017-18 Financial Year' ( Total201718,(pctsum) Ranked201718 Total201718))
	;


	Define CombinedCode / DIsplay;
	Define TotalJuly2018  / DIsplay 'Number of Exits' f=comma9.;
	Define RankedJuly2018 / DIsplay 'Ranking' order order=Internal;
	
	Define TotalJuly2017 / DIsplay f=comma9.;
	Define RankedJuly2017 / DIsplay;
	
	Define TotalJuly201718 / DIsplay f=comma20.;
	Define RankedJuly2017 / DIsplay;
	define pctsum /noprint 'Percentage' format=percent7.1;


	rbreak after / ol summarize;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Aug 2018 06:06:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/488775#M31578</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2018-08-22T06:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a column heading from a proc report</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/489080#M31582</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13827"&gt;@FredrikE&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12151"&gt;@Jagadishkatam&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I knew I made a mistake as soon as I ready your responses. I need to keep the column sorry - I don't want the heading second row that shows&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Number of Exits&lt;/LI&gt;&lt;LI&gt;TotalJuly2017&lt;/LI&gt;&lt;LI&gt;Total201718&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22696iD2A1BD844BE3EBDB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.JPG" alt="Capture2.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 22:28:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Removing-a-column-heading-from-a-proc-report/m-p/489080#M31582</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-08-22T22:28:36Z</dc:date>
    </item>
  </channel>
</rss>

