<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : in row calculation</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : in row calculation]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 02 May 2026 00:12:06 +0000</pubDate>
  <lastBuildDate>Mon, 31 Aug 2015 04:50:10 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=22692</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[in row calculation :  With sumsub I can make subtotals...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=22692&amp;PID=73839&amp;title=in-row-calculation#73839</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4820">skiman</a><br /><strong>Subject:</strong> 22692<br /><strong>Posted:</strong> 31 August 2015 at 4:50am<br /><br /><i>With sumsub I can make subtotals on the grouprow, but I need a multiplication on a row.</i><br><br>In fact, I want to have a formula for a record:item. <br><br>I would like to have the possibility to add columns, and to define the formula for that column. I would add the item for each row, and to insert the value in that item. A value which is calculated according to a new formula. <br><br>The item has the formula property, so I would expect it can be used?<br>]]>
   </description>
   <pubDate>Mon, 31 Aug 2015 04:50:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=22692&amp;PID=73839&amp;title=in-row-calculation#73839</guid>
  </item> 
  <item>
   <title><![CDATA[in row calculation : Hi,I don&amp;#039;t want to make a...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=22692&amp;PID=73819&amp;title=in-row-calculation#73819</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4820">skiman</a><br /><strong>Subject:</strong> 22692<br /><strong>Posted:</strong> 28 August 2015 at 7:16am<br /><br />Hi,<br><br>I don't want to make a SUM, but I want to multiply two columns. I was expecting that C3*C4 would give me the result.<br><br>If C3 = 5 and C4 = 20 then C3*C4 would be 100.<br><br>With sumsub I can make subtotals on the grouprow, but I need a multiplication on a row.<br>]]>
   </description>
   <pubDate>Fri, 28 Aug 2015 07:16:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=22692&amp;PID=73819&amp;title=in-row-calculation#73819</guid>
  </item> 
  <item>
   <title><![CDATA[in row calculation :  Hello Chris,Pattern for property...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=22692&amp;PID=73818&amp;title=in-row-calculation#73818</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 22692<br /><strong>Posted:</strong> 28 August 2015 at 6:58am<br /><br />Hello Chris,<br><br>Pattern for property "formula" is<br> SUMSUB(R#C#:R#C#) or SUM(R#C#:R#C#)&nbsp;<br><br>R is row index and C is column index and&nbsp; * instead of # - means all rows or columns<br><br>see "Formula Property" in documentation<br>C:\Program Files (x86)\Codejock Software\ActiveX\Xtreme SuitePro ActiveX v16.4.0\Help\SymbolReference.chm<br><br>So on setting caption: If formula is correct &nbsp;then caption of ReportRecordItem &nbsp;replaced with result &nbsp;else caption text used. So to update text of item with formula you need to set any caption even empty string.<br><br>Regards,<br>&nbsp;Oleksandr Lebed&nbsp;]]>
   </description>
   <pubDate>Fri, 28 Aug 2015 06:58:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=22692&amp;PID=73818&amp;title=in-row-calculation#73818</guid>
  </item> 
  <item>
   <title><![CDATA[in row calculation : Hi,I&amp;#039;m trying to use some...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=22692&amp;PID=73755&amp;title=in-row-calculation#73755</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4820">skiman</a><br /><strong>Subject:</strong> 22692<br /><strong>Posted:</strong> 21 August 2015 at 4:57am<br /><br />Hi,<br><br>I'm trying to use some in row calculation.<br><br>I have three columns:<br>Description, Quantity, Unit price.<br><br>I want to add another column: 'Total', And I added an extra item to each record.<br>oItem := oRecord:AddItem("")<br>oItem:format := "%.2f"<br>oItem:formula := "C1*C2"<br>oItem:caption := "x"<br><br>I expected/hoped that the result of this item would be shown in my new column. In my column the 'x' is shown?<br><br>Another way would be to have a <b>formula</b> for a <b>Column</b>. I was thinking of using the TAG property to put my formula in. <br><br>Any suggestions for this? <br><br>]]>
   </description>
   <pubDate>Fri, 21 Aug 2015 04:57:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=22692&amp;PID=73755&amp;title=in-row-calculation#73755</guid>
  </item> 
 </channel>
</rss>