Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
fklatecki
Helper I
Helper I

Calculated column

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,

 

1 ACCEPTED SOLUTION
DAX0110
Resolver V
Resolver V

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.

 

 

 

 

View solution in original post

2 REPLIES 2
DAX0110
Resolver V
Resolver V

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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors