Okay, I actually had to create a table and try this out.The Total field
needs to be a numeric or decimal field, and when you click the patterns
button, click both checkboxes to allow empty and allow zero.Then, I had
to multiply each of the values by 1, to force the field to look at them
as a number, rather than a string. So, my code looked like this (again,
using Javascript):this.rawValue = (Row1.Cell2.rawValue * 1) +
(Row2.Cell2.rawValue * 1) + (Row3.Cell2.rawValue * 1) +
(Row4.Cell2.rawValue *...