Hi There,
I am trying to come up with an formula which in the active row is close to 0 when plus or minus row+1, and row-1. I have the following formula, but the formula is still picking up sum_value that are not <=0.0001 or >-=0.0001. Am I missing something..?
IF([Row-1:Sum_Value]+[Sum_Value]<=0.0001 OR [Row-1:Sum_Value]+[Sum_Value]>=-0.0001) THEN 0
ELSEIF ([Row+1:Sum_Value]+[Sum_Value]<=0.0001 OR [Row+1:Sum_Value]+[Sum_Value]>=-0.0001) THEN 0
ELSE [Sum_Value]
ENDIF
Thanks!