I have a form that contains more than one table that has items in each table populated by a lookup. The user of the form adds a 'score' on each item of each table, and there is a field at the bottom of the form that calculates the total score by what the user enters for scores on each row of the tables. They can either enter a 0 or 1, which is dictated by the number field configuration in the form in each table. If they enter a 0 in the first row of the table, the entire table is not included in the total score.
Here is an example when the first rows of each table has a '1' (only showing the first 2 tables for simplicity sake):
Here is the total at the bottom of the form, which is correct:
When I change the first score of one of the tables to '0', it doesn't count any of the rows in the calculation:
Here is the total at the bottom, which is incorrect:
When I change the row back to have a '1', the total is correct again.
Here is the calculation that I have on the 'Total' field:
=IF(Pump_Area.Item_Score<>"",SUM(Pump_Area.Item_Score),0)+
IF(Curb_Appeal.Item_Score_1<>"",SUM(Curb_Appeal.Item_Score_1),0)+
IF(Building.Item_Score_2<>"",SUM(Building.Item_Score_2),0)+
IF(Food_Area.Item_Score_3<>"",SUM(Food_Area.Item_Score_3),0)+
IF(Sales_Floor.Item_Score_4<>"",SUM(Sales_Floor.Item_Score_4),0)
I am using the Modern designer in Forms 11 self-hosted, version 11.0.2311.50553