<?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: format percent with comma in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717530#M221918</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;thank you. It's correct.&amp;nbsp;How do I increase a decimal?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Feb 2021 09:55:12 GMT</pubDate>
    <dc:creator>mariopellegrini</dc:creator>
    <dc:date>2021-02-08T09:55:12Z</dc:date>
    <item>
      <title>format percent with comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717521#M221911</link>
      <description>&lt;P&gt;Good morning.&lt;BR /&gt;I would like to know if it is possible to display a percent format with a comma. Like this for example: 12,5% and not 12.5%&lt;BR /&gt;The percentw.d format always displays the period, not the comma.&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 09:27:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717521#M221911</guid>
      <dc:creator>mariopellegrini</dc:creator>
      <dc:date>2021-02-08T09:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: format percent with comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717524#M221914</link>
      <description>&lt;P&gt;I don't think it exists out-the-box. Though, you can always roll out your own like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
   picture PercentC low-high = '000.009,9%' (multiplier = 1000);
run;

data _null_;
   a = 0.125;
   put a = PercentC.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Feb 2021 09:40:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717524#M221914</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-02-08T09:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: format percent with comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717525#M221915</link>
      <description>&lt;P&gt;I am interested in the format, not informat. I would visualize on the table 12,5% with comma&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 09:43:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717525#M221915</guid>
      <dc:creator>mariopellegrini</dc:creator>
      <dc:date>2021-02-08T09:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: format percent with comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717526#M221916</link>
      <description>&lt;P&gt;That's exactly what my code does?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 09:45:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717526#M221916</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-02-08T09:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: format percent with comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717530#M221918</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;thank you. It's correct.&amp;nbsp;How do I increase a decimal?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 09:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717530#M221918</guid>
      <dc:creator>mariopellegrini</dc:creator>
      <dc:date>2021-02-08T09:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: format percent with comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717533#M221920</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/3574"&gt;@mariopellegrini&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also use the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=leforinforref&amp;amp;docsetTarget=n1a96gsfsn3d5kn1thox2oea514y.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;NLPCT&lt;EM&gt;w&lt;/EM&gt;.&lt;EM&gt;d&lt;/EM&gt; format&lt;/A&gt;:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options locale=IT_IT; /* This might be your default value. */

data _null_;
input p q;
put p nlpct6.1 q nlpct8.2;
cards;
0.125 -0.125
1      1.5678
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;PRE&gt; 12,5% -12,50%
100,0% 156,78%&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Feb 2021 10:11:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717533#M221920</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-02-08T10:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: format percent with comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717541#M221924</link>
      <description>&lt;PRE&gt;proc format;
   picture PercentC low-high = '009,999%' (decsep=',' multiplier = 100000);
run;

data _null_;
   a = 0.125;
   put a = PercentC.;
run;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Feb 2021 10:54:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/format-percent-with-comma/m-p/717541#M221924</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-02-08T10:54:37Z</dc:date>
    </item>
  </channel>
</rss>

