<?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>How to calculate a decimal with 10 numbers after decimal point?</title><link>https://community.appian.com/discussions/f/rules/11469/how-to-calculate-a-decimal-with-10-numbers-after-decimal-point</link><description>We have requirement to store a decimal number with 10 numbers after decimal point and need to calculate the captured values.How we can Achieve this ? 
 ex:var1:1.1234567891, var2:2.1234567891 
 result:var1+var2 
 Thanks In Advance,</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to calculate a decimal with 10 numbers after decimal point?</title><link>https://community.appian.com/thread/50501?ContentTypeID=1</link><pubDate>Thu, 30 Nov 2017 03:52:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:557d877a-0837-4b1e-b5e8-709c861e65ba</guid><dc:creator>rudrakshakammarig</dc:creator><description>Thanks  ,Its serves purpose.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to calculate a decimal with 10 numbers after decimal point?</title><link>https://community.appian.com/thread/50473?ContentTypeID=1</link><pubDate>Wed, 29 Nov 2017 13:19:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bab00870-b93e-4eba-8b9a-e7676b8d008e</guid><dc:creator>Harsha Sharma</dc:creator><description>Hi &lt;a href="/members/rudrakshakammarig"&gt;rudrakshakammarig&lt;/a&gt;  you can achieve the result by defining the expression as&lt;br /&gt;
 fixed(sum(fixed(ri!var1,10),fixed(ri!var2,10)),10) &lt;br /&gt;
and it will yield the result.The only drawback is that the output is of type text. Basically type decimal&amp;#39;s upper limit is exhausted in this case so it will round off the result to 7 decimal places in case of normal sum. Hope this text output works for you.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>