I have three columns [PO Cost], [% Accrual Est], [Accrual Est].
I want to automatically populate the [% Accrual Est] and [Accrual Est] columns based on inputs to [PO Cost].
However, the formulas in the two columns that I want to automatically populate reference one another, so I receive CIRCULAR REFERENCE in [% Accrual Est] and BLOCKED in [Accrual Est].
The following formulas are in [% Accrual Est] and [Accrual Est], respectively:
=IF(Parent@row = 0, [Accrual Est]@row / [PO Cost]@row, IF(Parent@row = 1, [% Complete]@row))
=IF(Parent@row = 0, SUM(CHILDREN()), IF(Parent@row = 1, [PO Cost]@row * [% Accrual Est]@row))
[% Accrual Est] is suppose to return the percentage of PO Cost accrued.
[Accrual Est] is suppose to return the dollar amount of PO cost accrued.
I am able to break the formulas apart and use the individual parts in individual cells, but when I try to write the formula to combine them for automation, I get errors.
Please let me know if there is a way to bar against the circular reference error. Thanks!