I have 3 A, B, C columns. I have put some formulas on B and C, something like this.
C1: PRODUCT(A1:B1)
B1: SUM(A1+C1)
But I have the circular reference warning.
and I change the formula with the if condition to:
C1: =IF(OR(ISBLANK(A1), ISBLANK(B1)), "", PRODUCT(A1:B1))
B1: =IF(OR(ISBLANK(A1), ISBLANK(C1)), "", A1+C1)
But I still have the circular reference warning. How do I avoid it?