Forum Discussion
summer18
Helper III
4 years agoCircular dependency error with Prior Month
I have a formula but getting "circular dependency error" that points to Prior Month budget but my formula is for Sales Actual. Formula with error: IF('Sales'[Department]="IT",0,'Sales'[YoY]) ...
- 4 years ago
I'm assuming that the formula you state is for a calculated column?
If so have a read of Avoiding circular dependency errors in DAX - SQLBI.
In the expression for the calculated column you want to wrap your [YoY] measure inside a calculate with an ALLEXCEPT to prevent it from adding everthing into the filter context.
bcdobbs
Community Champion
4 years agoI'm assuming that the formula you state is for a calculated column?
If so have a read of Avoiding circular dependency errors in DAX - SQLBI.
In the expression for the calculated column you want to wrap your [YoY] measure inside a calculate with an ALLEXCEPT to prevent it from adding everthing into the filter context.