<?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 1,000,000 to display1.0 in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147488#M11633</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Data_Null and Jaap are recommending the right way to deal with this issue -- changing the data is unnecessary. PROC FORMAT will do this for you and the documentation has an example of creating the "BIGMONEY." format for an example such as yours: &lt;A href="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#n0kl9qj532rbqln187us4ao371h7.htm" title="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#n0kl9qj532rbqln187us4ao371h7.htm"&gt;Base SAS(R) 9.4 Procedures Guide, Second Edition&lt;/A&gt; (The example is entitled "&lt;A id="n0kl9qj532rbqln187us4ao371h7"&gt;&lt;/A&gt;Example 3: Creating a Picture Format for Large Dollar Amounts").&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Aug 2014 16:41:05 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2014-08-04T16:41:05Z</dc:date>
    <item>
      <title>Format 1,000,000 to display1.0</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147484#M11629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SAS Enterprise Guide, how can I change a column to display to the "thousandth"?&amp;nbsp; For example, if a number is $2,534,000 - I would like the result to show $2.534.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know I can divide a column by 100,000 but there are 60 columns and I don't want to do that for all 60 columns.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 14:55:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147484#M11629</guid>
      <dc:creator>jen123</dc:creator>
      <dc:date>2014-08-04T14:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Format 1,000,000 to display1.0</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147485#M11630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well you could try using arrays:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;/* Way 1 where columns not the same = array myarray{60} var1 var2 var3 etc. - long winded */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array var{60};&amp;nbsp;&amp;nbsp; /* This assumes the variables are named var1 var2 etc. */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do I=1 to 60;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var{I}=var{I}/100000;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively you could generate the either by macro or call execute.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 15:06:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147485#M11630</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-08-04T15:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Format 1,000,000 to display1.0</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147486#M11631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This can be done with a PICTURE FORMAT and the appropriate multiplier applied to the range.&amp;nbsp; See the documentation I believe there is an example that is just what you are looking for or very close.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 15:35:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147486#M11631</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-08-04T15:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Format 1,000,000 to display1.0</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147487#M11632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You probably have a numeric dollar format that has a format applied to that showing the $ ...... &lt;A href="http://support.sas.com/documentation/cdl/en/leforinforref/64790/HTML/default/viewer.htm#p0ivpbwvkfwguqn12eew51gtu7y1.htm" title="http://support.sas.com/documentation/cdl/en/leforinforref/64790/HTML/default/viewer.htm#p0ivpbwvkfwguqn12eew51gtu7y1.htm"&gt;SAS(R) 9.4 Formats and Informats: Reference&lt;/A&gt;&lt;/P&gt;&lt;P&gt;With proc format you can define your own one with a multiply-factor.&amp;nbsp;&amp;nbsp; Just change the formats not the data.&amp;nbsp; &lt;A href="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#p0n990vq8gxca6n1vnsracr6jp2c.htm" title="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#p0n990vq8gxca6n1vnsracr6jp2c.htm"&gt;Base SAS(R) 9.4 Procedures Guide, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 15:37:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147487#M11632</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-08-04T15:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: Format 1,000,000 to display1.0</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147488#M11633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Data_Null and Jaap are recommending the right way to deal with this issue -- changing the data is unnecessary. PROC FORMAT will do this for you and the documentation has an example of creating the "BIGMONEY." format for an example such as yours: &lt;A href="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#n0kl9qj532rbqln187us4ao371h7.htm" title="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#n0kl9qj532rbqln187us4ao371h7.htm"&gt;Base SAS(R) 9.4 Procedures Guide, Second Edition&lt;/A&gt; (The example is entitled "&lt;A id="n0kl9qj532rbqln187us4ao371h7"&gt;&lt;/A&gt;Example 3: Creating a Picture Format for Large Dollar Amounts").&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 16:41:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147488#M11633</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-08-04T16:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Format 1,000,000 to display1.0</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147489#M11634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone for the responses.&amp;nbsp; Cynthia - thanks for the link to the Big Money example.&amp;nbsp; That helped, but I stil lhave an issue.&amp;nbsp; Here is my code.&amp;nbsp; The format works for&amp;nbsp; x and y.&amp;nbsp; However, a, b and c do not.&amp;nbsp; I should get:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = $0.0&lt;/P&gt;&lt;P&gt;b = $.01&lt;/P&gt;&lt;P&gt;c= $.01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead I get:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a= $99.0&lt;/P&gt;&lt;P&gt;b= $1&lt;/P&gt;&lt;P&gt;c=$1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your assistance is greatly appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; picture million (round fuzz=0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 -&amp;lt; 50000 = '00.0' (prefix='$' mult=0.0)&lt;/P&gt;&lt;P&gt;&amp;nbsp; 50000 -&amp;lt; 1000000 = '00.0' (prefix='$' mult=0.00001)&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1000000 -&amp;lt; 1000000000='0000.0' (prefix='$' mult=.00001);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp; data null ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; a = 49999;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; b = 70000;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; c = 100000;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; x = 19875000 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; y = 200000000;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format a million. ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format b million. ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format c million. ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format x million. ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format y million. ;&lt;/P&gt;&lt;P&gt; run ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 18:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147489#M11634</guid>
      <dc:creator>jen123</dc:creator>
      <dc:date>2014-08-04T18:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Format 1,000,000 to display1.0</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147490#M11635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you need to consider these two Cautions from the documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="xis-cautionGenText" style="font-weight: bold; color: #a5444e;"&gt;CAUTION:&lt;/P&gt;&lt;P class="xis-cautionLeadin" style="font-weight: bold; margin-left: 1.5em;"&gt;The picture must be wide enough for the prefix and the numbers.&lt;/P&gt;&lt;P class="xis-paraSimple" style="margin-left: 1.5em;"&gt;&lt;A id="n06eux3kg4melnn1scoghtrkl2iz" style="font-family: inherit;"&gt;&lt;/A&gt;In this example, if the value –45.00 were formatted with NOZEROS., then the result would be 45.00 because it falls into the first range, low – –1, and the picture for that range is not wide enough to accommodate the prefixed minus sign and the number.&lt;/P&gt;&lt;P class="xis-caution" style="font-family: lato, arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; margin-top: 1.4em; color: #353535; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;DIV class="xis-cautionGenText" style="font-weight: bold; color: #a5444e;"&gt;CAUTION:&lt;P&gt;&lt;/P&gt;&lt;P class="xis-cautionLeadin" style="font-weight: bold; margin-left: 1.5em;"&gt;The picture must be wide enough for an additional digit if rounding a number adds a digit to the number.&lt;/P&gt;&lt;P class="xis-paraSimple" style="margin-left: 1.5em;"&gt;&lt;A id="p0be3pe6hfcqzbn13gx1vi1g5fpb" style="font-family: inherit;"&gt;&lt;/A&gt;For example, the picture for the number .996 could be ‘99’ (prefix ‘.’ mult=100). After rounding the number and multiplying it by 100, the resulting number is 100. When the picture is applied, the result is .00, an inaccurate number. In order to ensure accuracy of numbers when you round numbers, make the picture wide enough to accommodate larger numbers.&lt;/P&gt;&lt;P class="xis-paraSimple" style="margin-left: 1.5em;"&gt;&lt;/P&gt;&lt;P class="xis-paraSimple" style="margin-left: 1.5em;"&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;I don't think you need but one range for positive numbers.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;format&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;picture&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; million(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;round&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;) &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;-&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;1e9&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;' 000009.9'&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;prefix&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;'$'&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;mult&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0.00001&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; null ;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; a = &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;49999&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; b = &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;70000&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; c = &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;100000&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; d = &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;1e6&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;x&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; = &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;19875000&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; y = &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;200000000&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; _all_ &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;million.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;put&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;_all_&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;)(=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;best.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;put&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;_all_&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;)(=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;million.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;P&gt;a=49999 b=70000 c=100000 d=1000000 x=19875000 y=200000000&lt;/P&gt;&lt;P&gt;a=$0.0 b=$0.1 c=$0.1 d=$1.0 x=$19.9 y=$200.0&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 19:14:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147490#M11635</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-08-04T19:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Format 1,000,000 to display1.0</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147491#M11636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This thread and the BIGMONEY example prompted me to complete this blog post, which I had been mulling for a while:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://blogs.sas.com/content/sasdummy/2014/08/13/social-media-counts-formats/" title="http://blogs.sas.com/content/sasdummy/2014/08/13/social-media-counts-formats/"&gt; Format your data like a social media superstar - The SAS Dummy&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAS formats are super powerful, and PICTURE formats can be immensely useful.&amp;nbsp; Enjoy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 16:20:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Format-1-000-000-to-display1-0/m-p/147491#M11636</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2014-08-13T16:20:29Z</dc:date>
    </item>
  </channel>
</rss>

