<?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: Custom formatting in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Custom-formatting/m-p/969142#M43325</link>
    <description>&lt;P&gt;Never mind.&amp;nbsp; &amp;nbsp;Posted this in the wrong thread.&amp;nbsp; &amp;nbsp;I'll post it in SAS programming.&lt;/P&gt;</description>
    <pubDate>Mon, 16 Jun 2025 19:15:11 GMT</pubDate>
    <dc:creator>Batman</dc:creator>
    <dc:date>2025-06-16T19:15:11Z</dc:date>
    <item>
      <title>Custom formatting</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Custom-formatting/m-p/969141#M43324</link>
      <description>&lt;P&gt;Can someone suggest a fix that will make the "&amp;lt;0.5%" format work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc format;
   picture custpcttwo 
   /*format values above .5% as whole percentages*/
	.005-high='0009%' (round) (mult=100)
	/*for those btw 0 and .5% format as "&amp;lt;0.5%"*/
	low-&amp;lt;.005 = '&amp;lt;0.5%'
	; 
run;

data a;
	x=.005;
	y=.0003;
run;

proc print data=a;
	var x y;
	format x y custpcttwo.;
run;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Jun 2025 19:06:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Custom-formatting/m-p/969141#M43324</guid>
      <dc:creator>Batman</dc:creator>
      <dc:date>2025-06-16T19:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: Custom formatting</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Custom-formatting/m-p/969142#M43325</link>
      <description>&lt;P&gt;Never mind.&amp;nbsp; &amp;nbsp;Posted this in the wrong thread.&amp;nbsp; &amp;nbsp;I'll post it in SAS programming.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 19:15:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Custom-formatting/m-p/969142#M43325</guid>
      <dc:creator>Batman</dc:creator>
      <dc:date>2025-06-16T19:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: Custom formatting</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Custom-formatting/m-p/969161#M43326</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
   picture custpcttwo(round) 
   /*format values above .5% as whole percentages*/
	.005-high='0009%'  (mult=100)
	/*for those btw 0 and .5% format as "&amp;lt;0.5%"*/
	low-&amp;lt;.005 = '&amp;lt;0.5%' (noedit)
	; 
run;

data a;
	x=.005;
	y=.0003;
run;

proc print data=a;
	var x y;
	format x y custpcttwo.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1750128655370.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/107853i0A838E2F181D77CB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1750128655370.png" alt="Ksharp_0-1750128655370.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 02:51:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Custom-formatting/m-p/969161#M43326</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-06-17T02:51:03Z</dc:date>
    </item>
  </channel>
</rss>

