<?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 Percent format with comma instead of point symbol in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Percent-format-with-comma-instead-of-point-symbol/m-p/750919#M236286</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;is there a percent format with comma instead of point&amp;nbsp; ?&lt;/P&gt;
&lt;P&gt;For example the percentn format show me this: -17.1%, but we need -17,1% format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Exist this kind of format?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 29 Jun 2021 09:10:05 GMT</pubDate>
    <dc:creator>Rakeon</dc:creator>
    <dc:date>2021-06-29T09:10:05Z</dc:date>
    <item>
      <title>Percent format with comma instead of point symbol</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percent-format-with-comma-instead-of-point-symbol/m-p/750919#M236286</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;is there a percent format with comma instead of point&amp;nbsp; ?&lt;/P&gt;
&lt;P&gt;For example the percentn format show me this: -17.1%, but we need -17,1% format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Exist this kind of format?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 09:10:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percent-format-with-comma-instead-of-point-symbol/m-p/750919#M236286</guid>
      <dc:creator>Rakeon</dc:creator>
      <dc:date>2021-06-29T09:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Percent format with comma instead of point symbol</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percent-format-with-comma-instead-of-point-symbol/m-p/750921#M236288</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/24745"&gt;@Rakeon&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/nlsref/n1a96gsfsn3d5kn1thox2oea514y.htm" target="_blank" rel="noopener"&gt;NLPCT&lt;EM&gt;w.d&lt;/EM&gt;&lt;/A&gt; format (or one of the related NLPCT... formats) with a suitable &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/nlsref/n1n9bwctsthuqbn1xgipyw5xwujl.htm" target="_blank" rel="noopener"&gt;LOCALE&lt;/A&gt; setting (possibly your default).&lt;/P&gt;
&lt;PRE&gt;280  %put %sysfunc(getoption(locale));
DE_DE
281
282  data _null_;
283  x=-0.171;
284  put x NLPCT6.1;
285  run;

-17,1%
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


286
287  options locale=EN_US;
288
289  data _null_;
290  x=-0.171;
291  put x NLPCT6.1;
292  run;

-17.1%&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Jun 2021 09:39:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percent-format-with-comma-instead-of-point-symbol/m-p/750921#M236288</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-06-29T09:39:35Z</dc:date>
    </item>
  </channel>
</rss>

