<?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 proc format picture in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-format-picture/m-p/676956#M204151</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;Can anyone explain in words what this proc format is doing?&lt;/P&gt;
&lt;P&gt;May show a practical example when we can use it?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
picture show (round)
0-high = 99.99
low - &amp;lt;0=099.99 (prefix='-')
;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 15 Aug 2020 12:13:34 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2020-08-15T12:13:34Z</dc:date>
    <item>
      <title>proc format picture</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-format-picture/m-p/676956#M204151</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;Can anyone explain in words what this proc format is doing?&lt;/P&gt;
&lt;P&gt;May show a practical example when we can use it?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
picture show (round)
0-high = 99.99
low - &amp;lt;0=099.99 (prefix='-')
;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 15 Aug 2020 12:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-format-picture/m-p/676956#M204151</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-08-15T12:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: proc format picture</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-format-picture/m-p/676958#M204152</link>
      <description>&lt;P&gt;It is displaying a positive number (rounded off) as two digits (one or both of them could be a leading zero) before the decimal and two digits after the decimal. If the number is less than zero, there can be three digits, a minus sign and no leading zero.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
picture show (round)
0-high = 99.99
low - &amp;lt;0=099.99 (prefix='-')
;
run;
data example;
    x1=8.03;
    x2=8.037;
    x3=-1.90;
    format x1-x3 show.;
run;&lt;/CODE&gt;&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Aug 2020 13:24:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-format-picture/m-p/676958#M204152</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-15T13:24:02Z</dc:date>
    </item>
  </channel>
</rss>

