<?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: SAS auto round figure if more that 18 digit in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116136#M23960</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The magic question here is how Senico wish to use these large numbers?&lt;/P&gt;&lt;P&gt;Is it just exploration of SAS limitations, or a real life problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Aug 2013 14:38:09 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2013-08-20T14:38:09Z</dc:date>
    <item>
      <title>SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116127#M23951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;TT&gt;&lt;SPAN style="font-size: 10pt;"&gt;Hi, &lt;/SPAN&gt;&lt;/TT&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;TT&gt;&lt;SPAN style="font-size: 10pt;"&gt;We notice SAS base will round the figure is more than 18 digit.&lt;/SPAN&gt;&lt;/TT&gt; &lt;/P&gt;&lt;P&gt;&lt;TT&gt;&lt;SPAN style="font-size: 10pt;"&gt;Is there any setting in server/client machine if we want to programme to show exact value?&lt;/SPAN&gt;&lt;/TT&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;TT&gt;&lt;SPAN style="font-size: 10pt;"&gt;Please advice. Thank you.&lt;/SPAN&gt;&lt;/TT&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;TT&gt;&lt;SPAN style="font-size: 10pt;"&gt;Below is the sample code:&lt;/SPAN&gt;&lt;/TT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-family: 'Courier New'; font-size: 10pt;"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt; test;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt; b &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: 'Courier New'; font-size: 10pt;"&gt;best32.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt; d &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: 'Courier New'; font-size: 10pt;"&gt;best32.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt; f &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: 'Courier New'; font-size: 10pt;"&gt;best32.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;x = &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-family: 'Courier New'; font-size: 10pt;"&gt;'0010000000130000123'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;y = &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-family: 'Courier New'; font-size: 10pt;"&gt;'001000000013000012'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;z = &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-family: 'Courier New'; font-size: 10pt;"&gt;'00100000001300001'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;len1 = length(x);&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;len2 = length(y);&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;len3 = length(z);&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;b = input(x, &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: 'Courier New'; font-size: 10pt;"&gt;best32.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;);&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;d = input(y, &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: 'Courier New'; font-size: 10pt;"&gt;best32.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;);&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;f = input(z, &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: 'Courier New'; font-size: 10pt;"&gt;best32.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;);&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-family: 'Courier New'; font-size: 10pt;"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 10pt;"&gt;Senico&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 08:04:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116127#M23951</guid>
      <dc:creator>senico82_gmail_com</dc:creator>
      <dc:date>2013-08-20T08:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116128#M23952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'n not following you. What do mean by round?&lt;/P&gt;&lt;P&gt;What your example shows is that leading zeros is not displayed by default.&lt;/P&gt;&lt;P&gt;If you want leading zeros on numerical variable, use Zn. format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 09:07:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116128#M23952</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-08-20T09:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116129#M23953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont beleive that there is a solution to this problem in the SAS environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The default length of a numeric variable is 8 bytes, this is also the maximum length. The largest integer that can be expressed exactly in SAS is 9,007,199,254,740,992.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I notice that your example numbers have leading zeroes, and these supposed to be codes of some kind? You might want to consider storing them as character varaibles where they can be stored exactly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 09:21:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116129#M23953</guid>
      <dc:creator>Murray_Court</dc:creator>
      <dc:date>2013-08-20T09:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116130#M23954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me provide you simple example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;format b best32.;&lt;/P&gt;&lt;P&gt;x = '0010000000130000123';&lt;/P&gt;&lt;P&gt;len1 = length(x);&lt;/P&gt;&lt;P&gt;b = input(x, best32.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output from test datasets:&lt;/P&gt;&lt;P&gt;x = 10000000130000123&lt;/P&gt;&lt;P&gt;b = 10000000130000124&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expected output:&lt;/P&gt;&lt;P&gt;x = 10000000130000123&lt;/P&gt;&lt;P&gt;b = 10000000130000123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is why value from column 'b' has been round?&lt;/P&gt;&lt;P&gt;I am expecting that column 'x' and column 'b' having the same value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Senico&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 09:21:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116130#M23954</guid>
      <dc:creator>senico82_gmail_com</dc:creator>
      <dc:date>2013-08-20T09:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116131#M23955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;same as:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://communities.sas.com/message/178091#178091"&gt;https://communities.sas.com/message/178091#178091&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 09:47:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116131#M23955</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2013-08-20T09:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116132#M23956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For starters, X i char and B in numeric, which in most situation isn't comparable.&lt;/P&gt;&lt;P&gt;And you need to understand how SAS stores numerical values, and displaying them.&lt;/P&gt;&lt;P&gt;Leading zeros doesn't really hold any information, nor influence any calculation. Therefore, they are not displayed by default.&lt;/P&gt;&lt;P&gt;Use Zn. format (haven't I already said that?).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 10:32:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116132#M23956</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-08-20T10:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116133#M23957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Linus, Not only starters have problems to understand how SAS works wiht numbers,,, uh it is IEE that applies everywhere..&lt;/P&gt;&lt;P&gt;Many more have people are having problems understanding working with numbers ... floating-flops.&lt;/P&gt;&lt;P&gt;Some background of how using a slider would be convenient. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 11:02:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116133#M23957</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2013-08-20T11:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116134#M23958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also need to file a complaint to my laser surgery practice, I just saw the rounding "error"... :smileyblush:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 12:34:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116134#M23958</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-08-20T12:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116135#M23959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jaap Karman gave you the right reference material.&amp;nbsp; Let me give you the short answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, it's not possible.&amp;nbsp; The way that SAS stores numeric values, it has room to store only 15 to 16 significant digits (ASCII vs. EBCDIC).&amp;nbsp; If you want an accurate representation of longer values, you will have to print the character variable instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are exceptions.&amp;nbsp; If you experiment with numbers that are multiple of 8, for example, you will see that you can store more significant digits.&amp;nbsp; However, understanding why requires reading up on the reference material that you'll find in Jaap's link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 14:08:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116135#M23959</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2013-08-20T14:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116136#M23960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The magic question here is how Senico wish to use these large numbers?&lt;/P&gt;&lt;P&gt;Is it just exploration of SAS limitations, or a real life problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Aug 2013 14:38:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116136#M23960</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-08-20T14:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116137#M23961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is real life problem.&lt;/P&gt;&lt;P&gt;I need to transform the example from character column to numeric column&lt;/P&gt;&lt;P&gt;and use it as account_number:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;0010000000130000123&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;gt;&amp;nbsp; &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;10000000130000123&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Senico&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 01:22:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116137#M23961</guid>
      <dc:creator>senico82_gmail_com</dc:creator>
      <dc:date>2013-08-21T01:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116138#M23962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is common practice across most industries that use account numbers to store them as character columns - for example banking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am curious to know why you want to transform them into numeric columns.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 02:57:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116138#M23962</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2013-08-21T02:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS auto round figure if more that 18 digit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116139#M23963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As it is indeed making no sense to try calculating the mean or skewness on accountnumbers... A correlation with the GPS y location?&lt;/P&gt;&lt;P&gt;The best approach would be tot treat it as char. It are characters within the 0-9 range (constraint).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One exception, bankers are having problems with numbers. The IBAN number? (of course no number as it contains A-Z.&lt;/P&gt;&lt;P&gt;But the made a convention with mod 97 calculation wiht 2 checking chars on it.&amp;nbsp; As the resolution in the number is a common problem this calculation has been split up in several parts in the example. &lt;A href="http://en.wikipedia.org/wiki/International_Bank_Account_Number" title="http://en.wikipedia.org/wiki/International_Bank_Account_Number"&gt;International Bank Account Number - Wikipedia, the free encyclopedia&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 04:43:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-auto-round-figure-if-more-that-18-digit/m-p/116139#M23963</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2013-08-21T04:43:19Z</dc:date>
    </item>
  </channel>
</rss>

