<?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>calculation between Objects</title><link>https://community.appian.com/discussions/f/user-interface/23127/calculation-between-objects</link><description>can anyone Check If the following code is correct .The final output is not displaying in the required field. It is for calculating loan interest 
 a!formLayout( contents: { a!sectionLayout( contents: { a!columnsLayout( columns: { a!columnLayout( contents</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: calculation between Objects</title><link>https://community.appian.com/thread/89183?ContentTypeID=1</link><pubDate>Fri, 17 Dec 2021 16:26:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:85b065ec-7ebf-42c5-816b-68f0127e8404</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;Hi, can you add a few additional details - are you noting that when you enter a value in the Loan Repayment Per Month field, the value is not saved into ri!LM_CustomerDetails.loanid.loanRepaymentPerMonth data point?&lt;/p&gt;
&lt;p&gt;I do note that your saveInto is redundant for this &amp;quot;&lt;span&gt;Loan Repayment Per Month&lt;/span&gt;&amp;quot; field - you have the value saving back into itself on line 90, then an a!save() which saves the same value into itself again on lines 91-94.&amp;nbsp; You can remove this before we troubleshoot further, adjust this field to be:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="csharp"&gt;
                a!integerField(
                  label: &amp;quot;Loan Repayment Per Month&amp;quot;,
                  labelPosition: &amp;quot;ABOVE&amp;quot;,
                  value: ri!LM_CustomerDetails.loanid.loanRepaymentPerMonth,
                  saveInto: ri!LM_CustomerDetails.loanid.loanRepaymentPerMonth,
                  refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                  readonly: true()
                )&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Also when posting code please note we have an INSERT -&amp;gt; CODE feature for readability:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/Insert_5F00_Code.JPG" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>