Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi experts,
I hope you can help me with a challenge:
I have the following datamodel (simplified):
In a report I can make a visualization which shows the following:
But I need to make a DAX measure, which shows the following:
Without adding the customer from the "customer dimension".
I have tried the following:
Sale by Brand = SUMX(SUMMARIZE(Customer,Customer[Customer Name],"Sale_",CALCULATE(SUM[Sale],CROSSFILTER('Product'[PRODUCT_KEY],'Sales North'[PRODUCT_KEY],Both)), CROSSFILTER('Product'[PRODUCT_KEY],'Sales South'[PRODUCT_KEY],Both))),[Sale_])
But the outcome is "100%" on all brands?
Can you crack the problem?
It will be much appreciated.
Br,
Jayjay0306
Just create 2 Measures and add together in 3rd measure, then slice by Brand:
SalesNorth = SUM(F_Sale_North[Sales])
SalesSouth = SUM(F_Sale_South[Sales])
TotalSales = [SalesNorth] + [SalesSouth]
The Product dimension is a Conformed dimension, so it has a relationship to the facts. This is why dimensional modeling works so well.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.