<?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 old title statement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764757#M242248</link>
    <description>I found the answer on an old sas post based on your suggestion of a custom template.&lt;BR /&gt;This code fixed it:&lt;BR /&gt;proc template; delete base.freq.crosstabfreqs; run;&lt;BR /&gt;&lt;BR /&gt;This is where it came from: &lt;A href="http://support.sas.com/resources/papers/freq92.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/freq92.pdf&lt;/A&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 29 Aug 2021 19:58:49 GMT</pubDate>
    <dc:creator>Kaeslock223_</dc:creator>
    <dc:date>2021-08-29T19:58:49Z</dc:date>
    <item>
      <title>Removing old title statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764742#M242239</link>
      <description>&lt;P&gt;I have been trying to remove this old title statement from my results but it continues to appear and it removes my ability of seeing the sas variable names, too. I've tried the standard removal (title;) and variations of it (title1; title2; title3;...), but it remains. Please help!&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="crappy compu.jpg" style="width: 561px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/63130iAD5C599DCD40C659/image-size/large?v=v2&amp;amp;px=999" role="button" title="crappy compu.jpg" alt="crappy compu.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Aug 2021 17:25:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764742#M242239</guid>
      <dc:creator>Kaeslock223_</dc:creator>
      <dc:date>2021-08-29T17:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Removing old title statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764744#M242240</link>
      <description>&lt;P&gt;TITLEn will replace the Nth title line and remove any titles after that. So either of these statements should clear the titles.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;TITLE1;
TITLE;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that TITLE statements issued in the middle of a step will take effect when that step produces output. So make sure to terminate your PROC steps with the appropriate statement for that PROC (RUN or QUIT).&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title;
proc freq ....;
tables ....;
run;

title 'Some other title'
proc some_other_proc ....&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How are you submitting your code?&amp;nbsp; If you using some tool that submits the code for you, like Enterprise Guide or SAS Studio then make sure it is not also submitting a TITLE statement.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Aug 2021 18:30:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764744#M242240</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-08-29T18:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Removing old title statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764746#M242241</link>
      <description>&lt;P&gt;This is not a title issue at all. This appears to be a custom template on the output of a particular PROC. Title statements would not remove variable names from the output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I cannot tell you the exact method of removing the custom template.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Aug 2021 18:33:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764746#M242241</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-08-29T18:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Removing old title statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764752#M242243</link>
      <description>&lt;P&gt;If the text in that printout are the labels on your variables you could try just running without the labels&lt;/P&gt;
&lt;P&gt;Either remove the labels with a label statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;label var1=' ' var2=' ';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or try setting the NOLABEL option.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nolabel;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 29 Aug 2021 19:19:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764752#M242243</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-08-29T19:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Removing old title statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764757#M242248</link>
      <description>I found the answer on an old sas post based on your suggestion of a custom template.&lt;BR /&gt;This code fixed it:&lt;BR /&gt;proc template; delete base.freq.crosstabfreqs; run;&lt;BR /&gt;&lt;BR /&gt;This is where it came from: &lt;A href="http://support.sas.com/resources/papers/freq92.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/freq92.pdf&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 29 Aug 2021 19:58:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764757#M242248</guid>
      <dc:creator>Kaeslock223_</dc:creator>
      <dc:date>2021-08-29T19:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Removing old title statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764768#M242250</link>
      <description>&lt;P&gt;sorry if this is not the appropriate place for my question. i saw a mcq question that asked something about 'deleting' a libname statement and although i figured out what they meant (undoing the libref), the wording confuses me because if we simply delete the statement and run the code again, won't the libref still be available for use? Is there specific terminology that i'm missing when we use words like 'remove', 'delete' etc?&lt;/P&gt;</description>
      <pubDate>Sun, 29 Aug 2021 21:49:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764768#M242250</guid>
      <dc:creator>jaliu</dc:creator>
      <dc:date>2021-08-29T21:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Removing old title statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764898#M242271</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/354036"&gt;@jaliu&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;sorry if this is not the appropriate place for my question. i saw a mcq question that asked something about 'deleting' a libname statement and although i figured out what they meant (undoing the libref), the wording confuses me because if we simply delete the statement and run the code again, won't the libref still be available for use? Is there specific terminology that i'm missing when we use words like 'remove', 'delete' etc?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please do not post unrelated questions in someone else's question thread.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Strongly suspect your paraphrase has changed wording/meaning from your source.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Syntax documentation. Bookmark it if you haven't already. &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=pgmsashome&amp;amp;docsetTarget=home.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=pgmsashome&amp;amp;docsetTarget=home.htm&amp;amp;locale=en&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/lestmtsglobal/n1nk65k2vsfmxfn1wu17fntzszbp.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/lestmtsglobal/n1nk65k2vsfmxfn1wu17fntzszbp.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;has the base LIBNAME statement documentation. Other specific targets for the LIBNAME have additional options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at Clear.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 17:18:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-old-title-statement/m-p/764898#M242271</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-08-30T17:18:50Z</dc:date>
    </item>
  </channel>
</rss>

