Good day,
I have a Laserfiche form that includes a table with the columns: Product Name, Product License, and Product Quantity. I've applied a calculation to the Quantity field using the following formula:
=IF(INDEX(Table_Data.License, ROW()) = "Account", 1, 0)
This formula updates the Quantity to 1 if the License field contains "Account" and sets the Quantity to 0 for any other value in the License field. While the formula works as expected, I encounter an issue when adding a new row to the table—it erases all previously entered values in the Quantity column.
Does anyone know how I can prevent this from happening?