Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Greetings,
Tables:
2016 Rebate
2017 Rebate
sales
I have this this Calculated column:
Rebate 2016b = CALCULATE(
SUMx(
Filter(
sales,
sales[year]=2016),
sales[Rebatable]*related('2016 Rebate'[Percent%])))
When I attempt to replicate it to access 2017 Values:
Rebate 2017b = CALCULATE(
SUMx(
Filter(
sales,
sales[year]=2017),
sales[Rebatable]*related('2017 Rebate'[percent])))
I get this error regarding circular dependency:
A circular dependency was detected: sales[Rebate 2017b], sales[Rebate 2016b], sales[Rebate 2017b].
Can you point me to the error of my ways???
Regards,
Solved! Go to Solution.
Hi @fklatecki,
I'd suggest one of two ways to work around this error:
(1) rewrite the calculated columns to remove the CALCULATE:
Rebate 2016b = IF( sales[year]=2016, sales[Rebatable] * related('2016 Rebate'[Percent%]) )
Rebate 2017b = IF( sales[year]=2017, sales[Rebatable] * related('2017 Rebate'[Percent%]) )
, or
(2) remove these calculated columns from the Sales table and change them into measures.
Hi @fklatecki,
I'd suggest one of two ways to work around this error:
(1) rewrite the calculated columns to remove the CALCULATE:
Rebate 2016b = IF( sales[year]=2016, sales[Rebatable] * related('2016 Rebate'[Percent%]) )
Rebate 2017b = IF( sales[year]=2017, sales[Rebatable] * related('2017 Rebate'[Percent%]) )
, or
(2) remove these calculated columns from the Sales table and change them into measures.
Thank you - lots to learn, often quoted
"DAX is simple, but it is not easy!"
Best
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 79 | |
| 57 | |
| 51 | |
| 46 |