Forum Discussion
Kumshan450
6 years agoHelper III
Context Transition Issue
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[Bran...
- 6 years ago
Kumshan450
6 years agoHelper III
https://drive.google.com/file/d/10R7pTMTVhI3DVZuc7e6mV7QrAWq_-G-I/view?usp=sharing
Data link Path shared
az38
6 years agoCommunity Champion
there is no access to your data sample, please, check access policy
- Kumshan4506 years agoHelper III
Sorry my mistake. Please check the below link.
https://drive.google.com/file/d/10R7pTMTVhI3DVZuc7e6mV7QrAWq_-G-I/view?usp=sharing
- az386 years agoCommunity Champion
- az386 years agoCommunity Champion
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() )