Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
39 | |
35 |
User | Count |
---|---|
107 | |
56 | |
52 | |
48 | |
40 |