I have 3 dimensions tables and one fact Table Sales
- DimCalendar (Fields Year/Month/Day/Week)
- DimCountry (Field : CountryName)
- DimManager (Field ManagerName)
- FctSales (Field : Amount)
I want to create a measure to Sum the Amount of the Sales (FctSales) and filter only to the fields of the tables DimCalendar and DimCountry.
After research, i was thinking about the function AllExcept, like :
CALCULATE(SUM(Sales[Amt]);ALLExcept(Sales;Country[Country];Calendar[Year]...)
but if i do that, i will have to write every columns of the table Calendar and Table Country in the AllExcept, i am wondering if there is another solution.
Offer
your sales fact table? – Alexis OlsonDimManager
? – Alexis OlsonOffer
in your code but notFctSales
. How are these related? – Alexis Olson