<?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: Move deimal 2 places to the right in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659427#M197546</link>
    <description>&lt;P&gt;Create a format to simulate percent if you don't want the % sign&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-right" image-alt="percent.png" style="width: 136px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/43471iB9552C6E8B0DE7A0/image-size/large?v=v2&amp;amp;px=999" role="button" title="percent.png" alt="percent.png" /&gt;&lt;/span&gt;&lt;BR /&gt;proc format;
  picture perc (round)
  low - high ='009.9' (mult=1000);
run;
data x;
input a;
cards;
0.032258 
0.12345
1.2345
;

proc print;
  format a perc.;
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 16 Jun 2020 02:04:25 GMT</pubDate>
    <dc:creator>ghosh</dc:creator>
    <dc:date>2020-06-16T02:04:25Z</dc:date>
    <item>
      <title>Move deimal 2 places to the right</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659174#M197533</link>
      <description>&lt;P&gt;I'm having trouble finding out which format will get the results I am looking for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to convert a number like this 0.032258 to 3.2&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jun 2020 23:59:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659174#M197533</guid>
      <dc:creator>nbwest76</dc:creator>
      <dc:date>2020-06-15T23:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: Move deimal 2 places to the right</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659178#M197536</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202671"&gt;@nbwest76&lt;/a&gt;&amp;nbsp; are you asking percent format?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;0.032258 is 3.2 %&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 00:04:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659178#M197536</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-06-16T00:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Move deimal 2 places to the right</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659365#M197543</link>
      <description>Multiply by 100 and format? Or apply a percentage format to your variable?&lt;BR /&gt;&lt;BR /&gt;want = x * 100;&lt;BR /&gt;format want 8.1;&lt;BR /&gt;format x percent12.1;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jun 2020 01:52:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659365#M197543</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-16T01:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Move deimal 2 places to the right</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659415#M197545</link>
      <description>&lt;P&gt;You can also use the &lt;A href="https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p0n990vq8gxca6n1vnsracr6jp2c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n1ep10gz106w93n11vfayrnyif5h" target="_self"&gt;multiplier&lt;/A&gt; option in a picture format.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 01:58:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659415#M197545</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-06-16T01:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Move deimal 2 places to the right</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659427#M197546</link>
      <description>&lt;P&gt;Create a format to simulate percent if you don't want the % sign&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-right" image-alt="percent.png" style="width: 136px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/43471iB9552C6E8B0DE7A0/image-size/large?v=v2&amp;amp;px=999" role="button" title="percent.png" alt="percent.png" /&gt;&lt;/span&gt;&lt;BR /&gt;proc format;
  picture perc (round)
  low - high ='009.9' (mult=1000);
run;
data x;
input a;
cards;
0.032258 
0.12345
1.2345
;

proc print;
  format a perc.;
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Jun 2020 02:04:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Move-deimal-2-places-to-the-right/m-p/659427#M197546</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2020-06-16T02:04:25Z</dc:date>
    </item>
  </channel>
</rss>

