Where do you want the answer? In a subtotal field of each row?In
FormCalc, use the calculate event. I put it in a subtotal to show an
example. The calculated field updates dynamically.In the calculate event
of the Subtotal field (i used a decimal
field)form1.#subform[0].Table1.Row1.DecimalField1::calculate -
(FormCalc, client)(monthlyCost + upfrontCost) * qty Thats all that is
needed. You dont even need to specify the row number for each row's
calculated field. FormCalc makes it very easy for ca...