Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Dear friends,
Does somebody know how to realize reverse calculations in DAX?
Solved! Go to Solution.
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 @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?
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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |