Thanks for clarifying.
The problem with this is that the values of column A and column B would need to be determined first before calculating the Total column. We want to make it as flexible as possible, but this may cause problems.
For example:
Column A = Outcome A
Column B = Outcome B
Column Total = Column A + Column B
Would work, but if we change Column A to:
Column A = Outcome A + Column Total
Then there would be an infinite loop, which would break the site. For the purposes of this plugin, it is safer to use these equations instead:
Column A = Outcome A
Column B = Outcome B
Column Total = Outcome A + Outcome B
This means that if the equation for Column A is more complicated, we should still reproduce that same equation as part of the Column Total equation.
I hope that makes sense ??