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
Qazybek
Frequent Visitor

Reverse calculation in DAX

Dear friends,

 

Does somebody know how to realize reverse calculations in DAX?

 

Like this

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Qazybek,

 

There are lot of difference in dax formula between power bi and excel pivot table, some functions only available to excel and some dax functions only works on power bi side.

 

I don't think a complex formula can works well on them at same time. Can you please share a sample file to test?

 

In addition, you can also take a look at following links about circular dependency:

Avoiding circular dependency errors in DAX

Understanding Circular Dependencies in Tabular and PowerPivot

 

Regards,

Xiaoxin Sheng

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Qazybek,

 

Did you mean unselected items?  If this is a case, you can use dax formula to get reverse selection items to calculate unselected part.

Sample measure:

measure =
VAR list =
    ALLSELECTED ( Table[Column] )
RETURN
    CALCULATE (
        SUM ( Table[Amount] ),
        FILTER ( ALL ( Table ), NOT ( Table[Column] IN list ) )
    )

 

Regards,
Xiaoxin Sheng

Hi @Anonymous,

 

Thank you for the reply! Somehow formulas on my Excel sheet disappeared, so I updated the link 🙂

 

I think that I am very close to the final solution but can't get the final calculation. The error is a circular dependency.

Is there any way to make it differently?

Anonymous
Not applicable

HI @Qazybek,

 

There are lot of difference in dax formula between power bi and excel pivot table, some functions only available to excel and some dax functions only works on power bi side.

 

I don't think a complex formula can works well on them at same time. Can you please share a sample file to test?

 

In addition, you can also take a look at following links about circular dependency:

Avoiding circular dependency errors in DAX

Understanding Circular Dependencies in Tabular and PowerPivot

 

Regards,

Xiaoxin Sheng

Hi @Anonymous,

 

Thank you very much for your help!

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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
Top Kudoed Authors