I have the following calculation in a table
=MULT(INDEX(PrimaryTable.Total_Unit_Cost,ROW()),INDEX(PrimaryTable.Billed_Qty_this_Period,ROW()))
It is the product of 2 other fields in the same row, however if I override the calculated value with my own input and then change the value of a field on another row in the table, it re-calculates all rows overriding my manually input value. I want to isolate the calculations to a specific row so that only changes made in that row trigger the calculation.
Is there a way to have a calculation that remains on it's row and is not effected by fields on other rows?
As a side question and possible workaround, can I use an IF statement before executing a Calculation. For example, if Index(Field1,ROW()) != Something, then use this calculation else don't calculate on this field and allow free entry.