<?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 Format in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43456#M11355</link>
    <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
i have a variable which holds big value (100000000000)...so when am using this value for further analysis , sas is coverting this value to exponential format(ex:7.50E+07)......i want to reamin the above big value same in the output.&lt;BR /&gt;
&lt;BR /&gt;
i applied format variable_name best 32...........but nothing has changed &lt;BR /&gt;
&lt;BR /&gt;
so kindly suggest any solution for this in order to remain the same value i.e big value&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Kumar</description>
    <pubDate>Thu, 11 Jun 2009 06:51:55 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-06-11T06:51:55Z</dc:date>
    <item>
      <title>Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43456#M11355</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
i have a variable which holds big value (100000000000)...so when am using this value for further analysis , sas is coverting this value to exponential format(ex:7.50E+07)......i want to reamin the above big value same in the output.&lt;BR /&gt;
&lt;BR /&gt;
i applied format variable_name best 32...........but nothing has changed &lt;BR /&gt;
&lt;BR /&gt;
so kindly suggest any solution for this in order to remain the same value i.e big value&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Kumar</description>
      <pubDate>Thu, 11 Jun 2009 06:51:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43456#M11355</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-06-11T06:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43457#M11356</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Try with the no of maximum digits in the number.&lt;BR /&gt;
Ex:&lt;BR /&gt;
data x;&lt;BR /&gt;
a=1000000000000000;&lt;BR /&gt;
format a 16.;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc print;&lt;BR /&gt;
run;</description>
      <pubDate>Thu, 11 Jun 2009 11:13:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43457#M11356</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-06-11T11:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43458#M11357</link>
      <description>derive another value[pre]      big_string = put( big_value, 32. -L ) ; [/pre]&lt;BR /&gt;
That &lt;B&gt;-L&lt;/B&gt; left-aligns the string.&lt;BR /&gt;
Does this help?&lt;BR /&gt;
 &lt;BR /&gt;
PeterC</description>
      <pubDate>Thu, 11 Jun 2009 12:14:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43458#M11357</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2009-06-11T12:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43459#M11358</link>
      <description>And what would the purpose hold for big_string as a CHARACTER type variable?&lt;BR /&gt;
&lt;BR /&gt;
The key here is for the OP to understand the external (formatted) versus the SAS internal NUMERIC variable value, especially when used in a calculation or derivation of some type.&lt;BR /&gt;
&lt;BR /&gt;
Using a FORMAT statement with a numeric variable is the key here.&lt;BR /&gt;
&lt;BR /&gt;
There are several technical papers and SAS-hosted Language Reference: Concepts documentation available on this topic at the SAS support  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;   website - consider the Google advanced search argument (or use the SAS website SEARCH facility):&lt;BR /&gt;
&lt;BR /&gt;
numeric variable precision format site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 11 Jun 2009 13:52:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43459#M11358</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-06-11T13:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43460#M11359</link>
      <description>HI actually when am exporting this value to graph output , the sas graph  is converting actual value to exponential value. &lt;BR /&gt;
&lt;BR /&gt;
I mean this value (100000000) should be placedon x -axis in the sas graph..... but sas is converting this value to exponential (ex:1.00E+08)value this means if the value is more than 8 digits then sas graph is converting thay value to exponential....i just want the value on x-axis ahould be actual number but not exponential value.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
so do we have any options in sas graph?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
kumar</description>
      <pubDate>Fri, 12 Jun 2009 05:57:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43460#M11359</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-06-12T05:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43461#M11360</link>
      <description>Yes, the FORMAT statement is one approach.  You will need to share your SAS code (complete) for a more detailed reply.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Fri, 12 Jun 2009 11:18:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Format/m-p/43461#M11360</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-06-12T11:18:51Z</dc:date>
    </item>
  </channel>
</rss>

