Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
In the below image, you can see that there are different results for the Fabrikam brand.
The following are the dax measures.
Fabrikam Sales= sumx(
filter(Sales,
Related(Product[Brand])="Fabrikam"
),[Sales Amount)
Contosa Sales= sumx(
filter(Sales,
Related(Product[Brand])="Contoso"
),[Sales Amount)
I know that the above DAX measures are not the correct approach. but i want to understand the context transitions issues in the above measures. Datalink Path shared.
I wanted to know why Fabrikam Sales measure value is not matching with the Fabrikam Sales Amount Value. My doubt is that if there are context transitions issues in Fabrikam Sales then the same is applicable for Contoso brand. How ContosaSales Measure is successful. Why it did not show the difference in values. I want to know the row value of fabrikam Sales that have resulted into difference of values.
This is required for understanding purposes.
Solved! Go to Solution.
So far, I localize a diffrenece here
https://drive.google.com/file/d/10R7pTMTVhI3DVZuc7e6mV7QrAWq_-G-I/view?usp=sharing
Data link Path shared
there is no access to your data sample, please, check access policy
Sorry my mistake. Please check the below link.
https://drive.google.com/file/d/10R7pTMTVhI3DVZuc7e6mV7QrAWq_-G-I/view?usp=sharing
So far, I localize a diffrenece here
from the first sight I see two options here
1. a complex measure like
Sales by Brand = calculate([Sales Amount],
ALLEXCEPT(Sales, 'Product'[Brand]))
2. a fabrikam Measure
FabrikamSales =
IF(
SELECTEDVALUE('Product'[Brand])="Fabrikam",
calculate([Sales Amount], 'Product'[Brand]="Fabrikam"),
BLANK()
)
Thank you very much.
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |