I am writing a calculation for a bunch of variables and keep getting the error about mismatched brackets. I do not see what is wrong since I count that all brackets are there in the right spots. Anybody know what is wrong? I tried this into a simpler one located down below but got the same error.
original:
IF(selected(${sidewalk},"yes"), (int(${obscured_adress}) + int(${broken_windows}) + int(${yard_debris}) + int(${untrimmed_yard}) + int(${roofing_cond}) + int(${paint_exterior_cond}) + int(${physical_appearance}) + int(${sidewalk_kind})) , (int(${obscured_adress}) + int(${broken_windows}) + int(${yard_debris}) + int(${untrimmed_yard}) + int(${roofing_cond}) + int(${paint_exterior_cond}) + int(${physical_appearance}))
simpler test:
IF(selected(${sidewalk},"yes"), 1, 0)