I have a table I want to sum all the values in a row, but only if a specific value in the table is "true".
In my situation there is the base price, and if the application is late, then there is an additional fee. So if the application is on time than the fee is the base price. However if the application is late, than the application now costs the original base price plus the late fee.
So the calculations would be below:
When Late=False, than Price = Base Price
When Late=True, than Price = Base Price + Late Fee
I have these set up in a table in the same row, but I don't know how to add them across the row for the total. The sum of the row would go in the CalcMasked at the end of the row.