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
az38
6 years agoCommunity Champion
az38
6 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()
)- Kumshan4506 years agoHelper III
Thank you very much.