Hello having trouble creating a formula and not sure if it is possible
So I have two sheets first with 5 check boxes and then a value field. The second which holds the values.
I want to be able to check the boxes and then have the value field add up the total
example
Sheet 2 values = These values might change over time hence why I want reference them.
V1 = 2 V2 = 6 V3 = 20 V4 = 55 V5 = 35
Sheet 1 actions
If check CB1+CB2+CB5 I would get a value of = 43
I can get 1 value to work but it seems I can only reference sheet2 once in the the formula and only in one column
=IF(CB1 = 1, {SHEET2 Range 1}, IF(CB1 = 0, 0)) This works
=IF(CB1 = 1, {SHEET2 Range 1}, IF(CB1 = 0, 0)) + IF(CB2 = 1, {SHEET2 Range ???}, IF(CB2 = 0, 0)) Cannot add the second range.
I would want something like this just not sure if it possible
=IF(CB1 = 1, {SHEET2 V1}, IF(CB1 = 0, 0))+IF(CB2 = 1, {SHEET2 V2}, IF(CB2 = 0, 0))+IF(CB3 = 1, {SHEET2 V3}, IF(CB3 = 0, 0))+IF(CB4 = 1, {SHEET2 V4}, IF(CB4 = 0, 0))+IF(CB5 = 1, {SHEET2 V5}, IF(CB5 = 0, 0))
Hopefully I have explained this right and can be done
-Brian