<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Integer greater than 10 digits</title><link>https://community.appian.com/discussions/f/general/18825/integer-greater-than-10-digits</link><description>Hi, 
 
 Appian supports Number with only max of 9 characters right.. If I have 10 digit amount &amp;amp; I wanted to perform mathematical calculations with that, in that case how to achieve this? 
 
 For Example : I have to take 10 digit number and I need to</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Integer greater than 10 digits</title><link>https://community.appian.com/thread/74037?ContentTypeID=1</link><pubDate>Wed, 13 May 2020 13:12:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d580db16-7be7-4e4c-8f72-99b869eb7823</guid><dc:creator>davel001150</dc:creator><description>&lt;p&gt;Converting to decimal and then rendering the value as an integer is especially useful for getting the 20% calculation right.&amp;nbsp; Doing the operation using only integers invites slight arithmetic errors.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Integer greater than 10 digits</title><link>https://community.appian.com/thread/73987?ContentTypeID=1</link><pubDate>Tue, 12 May 2020 09:17:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1fbb62e5-4def-449a-8eb0-434899759ad0</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;You can use&amp;nbsp;the Decimal type and, for display purposes on your interface, use the fn!fixed() to make it appear as if it were an integer:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;fixed(
  ri!myDecimal + (
    20 * ri!myDecimal/100
  ),
  0,
  false()
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>