<?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: How to Remove PROC title from Output? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-PROC-title-from-Output/m-p/704603#M216016</link>
    <description>&lt;P&gt;Thank you so much!&amp;nbsp; I appreciate your time.&amp;nbsp; Yes, I wish such a function exists!&lt;/P&gt;&lt;P&gt;Amy&lt;/P&gt;</description>
    <pubDate>Wed, 09 Dec 2020 01:47:33 GMT</pubDate>
    <dc:creator>missamyyu</dc:creator>
    <dc:date>2020-12-09T01:47:33Z</dc:date>
    <item>
      <title>How to Remove PROC title from Output?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-PROC-title-from-Output/m-p/704319#M215909</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've written a macro program and was wondering if there was a way to remove the title "The MEANS Procedure" from the output of the summary statistic portion (PROC MEANS) without using an ODS statement outside of the macro programming.&amp;nbsp; Thank you in advance for your time!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS NOPROCTITLE;
%MACRO	HS	 (DSNm = , Vbl = , Stats = N MEAN STDDEV,
						 NDec = 1);
						 
TITLE1 "Summary Statistics for '&amp;amp;Vbl.' from Data Set '&amp;amp;DSNm'" ITALIC;
PROC MEANS 
		DATA = &amp;amp;DSNm
		MAXDEC = &amp;amp;NDec
		&amp;amp;Stats;
	VAR	&amp;amp;Vbl;
	RUN;
TITLE;

%MEND	HS;
ODS;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;%HS (DSNm = work.test, Vbl = WtLb, Stats = Q1 MEDIAN Q3, NDec = 0)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 15:42:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-PROC-title-from-Output/m-p/704319#M215909</guid>
      <dc:creator>missamyyu</dc:creator>
      <dc:date>2020-12-10T15:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to Remove PROC title from Output?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-PROC-title-from-Output/m-p/704353#M215923</link>
      <description>&lt;P&gt;If you don't want to see the proc-title, you have to use "ods noproctitle". But you could, of course move the ods-statement into the macro. Unfortunately, it seems that no function exists to check how an ods option is set. For normal options you could use the function getoption in a data-step to backup the original value, change it to fit your needs and revert back to the original setting at the end of you macro. To bad, that such a function doesn't exist for the ods-options, at least i haven't found one.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 05:56:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-PROC-title-from-Output/m-p/704353#M215923</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-12-08T05:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to Remove PROC title from Output?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-PROC-title-from-Output/m-p/704603#M216016</link>
      <description>&lt;P&gt;Thank you so much!&amp;nbsp; I appreciate your time.&amp;nbsp; Yes, I wish such a function exists!&lt;/P&gt;&lt;P&gt;Amy&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 01:47:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-PROC-title-from-Output/m-p/704603#M216016</guid>
      <dc:creator>missamyyu</dc:creator>
      <dc:date>2020-12-09T01:47:33Z</dc:date>
    </item>
  </channel>
</rss>

