I am trying to add a value to a cell if a checkbox is checked. The cell I am trying to add to is already populated with an existing value. I want to add the two for a new value.
If Lift check box is checked then add $467.50 to revenue cell(already populated with $1800, for a total of $2267.50
Trying with this, but no luck - =IF([Lift3]@cell = 1, ([Projected Revenue3] + 467.50))
I can use just use a nested IF - =IF(Lift3 = 1, "$2267.50", IF(Lift3 = 0, "$1800.00")) but the problem is that then I can't SUM them at the bottom of the column, because I guess it sees it as text????
I have a feeling I am way off.