<?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: proc format picture question in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73827#M21423</link>
    <description>Hi there,&lt;BR /&gt;
actually, I had tried to change from comma to dot before writing (otherwise I wouldn't have written! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; )&lt;BR /&gt;
Thanks for the link, I'll take a look and hopefully solve this problem.&lt;BR /&gt;
 Best regards&lt;BR /&gt;
&lt;BR /&gt;
Daniele</description>
    <pubDate>Thu, 01 Oct 2009 07:34:35 GMT</pubDate>
    <dc:creator>DanieleTiles</dc:creator>
    <dc:date>2009-10-01T07:34:35Z</dc:date>
    <item>
      <title>proc format picture question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73825#M21421</link>
      <description>Hi to all,&lt;BR /&gt;
I've got a simple picture format:&lt;BR /&gt;
&lt;BR /&gt;
proc format;&lt;BR /&gt;
		   picture posval low-high='000,009';&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
However, I've got this problem: I'd like to represent the number as it would appear with a commax value (so it'd be shown like 200.000 and not as 200,000...in Italy we use a different format :))&lt;BR /&gt;
I didn't find any hint on how to do it...&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
Daniele</description>
      <pubDate>Wed, 30 Sep 2009 16:50:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73825#M21421</guid>
      <dc:creator>DanieleTiles</dc:creator>
      <dc:date>2009-09-30T16:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc format picture question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73826#M21422</link>
      <description>You have SAS-standard NLS (National Language Support) formats which address the decimal/comma consideration.  You will need to look in the SAS National Language Support (NLS): Reference Guide for details, however I provided a DOC link below which mentions them.&lt;BR /&gt;
&lt;BR /&gt;
Or, the PICTURE statement you have shown can also be changed from a comma to a period.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Formats Documented in Other SAS Publications&lt;BR /&gt;
The main references for SAS formats are SAS Language Reference: Dictionary and the SAS National Language Support (NLS): Reference Guide. See the documentation for your operating environment for host-specific information about formats.&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/61724/HTML/default/a003168458.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrdict/61724/HTML/default/a003168458.htm&lt;/A&gt;</description>
      <pubDate>Wed, 30 Sep 2009 17:53:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73826#M21422</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-09-30T17:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: proc format picture question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73827#M21423</link>
      <description>Hi there,&lt;BR /&gt;
actually, I had tried to change from comma to dot before writing (otherwise I wouldn't have written! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; )&lt;BR /&gt;
Thanks for the link, I'll take a look and hopefully solve this problem.&lt;BR /&gt;
 Best regards&lt;BR /&gt;
&lt;BR /&gt;
Daniele</description>
      <pubDate>Thu, 01 Oct 2009 07:34:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73827#M21423</guid>
      <dc:creator>DanieleTiles</dc:creator>
      <dc:date>2009-10-01T07:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: proc format picture question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73828#M21424</link>
      <description>Hi Daniele&lt;BR /&gt;
&lt;BR /&gt;
Have a look at the following. I assume one of the options should cover your needs.&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
Patrick&lt;BR /&gt;
&lt;BR /&gt;
options LOCALE=Italian_Italy;&lt;BR /&gt;
data _null_;&lt;BR /&gt;
  a=200000.001;&lt;BR /&gt;
  put a= best32.2;&lt;BR /&gt;
  put a= nlnum32.2;&lt;BR /&gt;
  put a= nlnumi32.2;&lt;BR /&gt;
  put a= comma32.2;&lt;BR /&gt;
  put a= commax32.2;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
options LOCALE=English_UnitedStates;&lt;BR /&gt;
data _null_;&lt;BR /&gt;
  a=200000.001;&lt;BR /&gt;
  put a= best32.2;&lt;BR /&gt;
  put a= nlnum32.2;&lt;BR /&gt;
  put a= nlnumi32.2;&lt;BR /&gt;
  put a= comma32.2;&lt;BR /&gt;
  put a= commax32.2;&lt;BR /&gt;
run;</description>
      <pubDate>Thu, 01 Oct 2009 13:49:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73828#M21424</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2009-10-01T13:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: proc format picture question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73829#M21425</link>
      <description>Hi Patrick,&lt;BR /&gt;
I've tried with the options Locale, but I didn't see any change in the picture format...with normal formats I've no problem in replacing dot with comma.&lt;BR /&gt;
Only with the picture one...</description>
      <pubDate>Fri, 02 Oct 2009 14:56:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73829#M21425</guid>
      <dc:creator>DanieleTiles</dc:creator>
      <dc:date>2009-10-02T14:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: proc format picture question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73830#M21426</link>
      <description>Hi Daniele &lt;BR /&gt;
&lt;BR /&gt;
The example below based on &lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0305d&amp;amp;L=sas-l&amp;amp;P=31270" target="_blank"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0305d&amp;amp;L=sas-l&amp;amp;P=31270&lt;/A&gt; &lt;BR /&gt;
&lt;BR /&gt;
What would we do without Google &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
Patrick&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc format ;&lt;BR /&gt;
   picture q low - high = '000.009,999' (decsep="," dig3sep=".");&lt;BR /&gt;
run ;&lt;BR /&gt;
&lt;BR /&gt;
data _null_ ;&lt;BR /&gt;
   x = 200 ;&lt;BR /&gt;
   put x= q. ;&lt;BR /&gt;
   x = 200000 ;&lt;BR /&gt;
   put x= q. ;&lt;BR /&gt;
   x = 200000.001 ;&lt;BR /&gt;
   put x= q. ;&lt;BR /&gt;
run ;</description>
      <pubDate>Sat, 03 Oct 2009 08:01:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73830#M21426</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2009-10-03T08:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: proc format picture question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73831#M21427</link>
      <description>Dear Patrick,&lt;BR /&gt;
THANKS!! I couldn't find that options, and now I'm happy!! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;BR /&gt;
Best regards!&lt;BR /&gt;
&lt;BR /&gt;
Daniele</description>
      <pubDate>Mon, 05 Oct 2009 10:22:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73831#M21427</guid>
      <dc:creator>DanieleTiles</dc:creator>
      <dc:date>2009-10-05T10:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: proc format picture question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73832#M21428</link>
      <description>Just as a shout-out for our Publications folks, here's the online documentation for those two options.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/a002473467.htm#a003281531" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/a002473467.htm#a003281531&lt;/A&gt;.</description>
      <pubDate>Mon, 05 Oct 2009 13:46:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-format-picture-question/m-p/73832#M21428</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2009-10-05T13:46:04Z</dc:date>
    </item>
  </channel>
</rss>

