<?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 delete a custom format that has a $ in its name in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-To-delete-a-custom-format-that-has-a-in-its-name/m-p/950535#M371710</link>
    <description>&lt;P&gt;I used this option and it worked.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc catalog catalog=work.formats;&lt;BR /&gt;delete armnrs / et=formatc;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But also yours seems to use the same apporach. thanks anyway!&lt;/P&gt;</description>
    <pubDate>Wed, 13 Nov 2024 10:16:16 GMT</pubDate>
    <dc:creator>OGA13</dc:creator>
    <dc:date>2024-11-13T10:16:16Z</dc:date>
    <item>
      <title>How To delete a custom format that has a $ in its name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-To-delete-a-custom-format-that-has-a-in-its-name/m-p/950531#M371707</link>
      <description>&lt;P&gt;I tried already with:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc catalog catalog=work.formats;
delete "$RFICDTC";
quit;



or&amp;nbsp;



proc format library=work.formats;
delete $RFICDTC;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Nov 2024 09:30:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-To-delete-a-custom-format-that-has-a-in-its-name/m-p/950531#M371707</guid>
      <dc:creator>OGA13</dc:creator>
      <dc:date>2024-11-13T09:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: How To delete a custom format that has a $ in its name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-To-delete-a-custom-format-that-has-a-in-its-name/m-p/950534#M371709</link>
      <description>&lt;P&gt;Neither.&lt;/P&gt;
&lt;P&gt;The approach with catalog entries is NAME.TYPE. The type of object is important because you could have a program, listing or other objects with the same name. With Formats you have FORMAT and FORMATC for character formats.&lt;/P&gt;
&lt;P&gt;You can use&lt;/P&gt;
&lt;PRE&gt;proc catalog catalog=work.formats;
contents ;
run;
quit;&lt;/PRE&gt;
&lt;P&gt;To get the names and type of objects in the catalog. Your example would want:&lt;/P&gt;
&lt;PRE&gt;proc format library=work.formats;
delete RFICDTC.FORMATC;
quit;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 10:13:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-To-delete-a-custom-format-that-has-a-in-its-name/m-p/950534#M371709</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-11-13T10:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: How To delete a custom format that has a $ in its name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-To-delete-a-custom-format-that-has-a-in-its-name/m-p/950535#M371710</link>
      <description>&lt;P&gt;I used this option and it worked.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc catalog catalog=work.formats;&lt;BR /&gt;delete armnrs / et=formatc;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But also yours seems to use the same apporach. thanks anyway!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 10:16:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-To-delete-a-custom-format-that-has-a-in-its-name/m-p/950535#M371710</guid>
      <dc:creator>OGA13</dc:creator>
      <dc:date>2024-11-13T10:16:16Z</dc:date>
    </item>
  </channel>
</rss>

