I have a Time dimension that was generared by Visual Studio.
The dimension is called DimSalesDate and has the hieararchies Year-Week-Date and Year-Month-Date, furthermore DimSalesDate.Year and DimSalesDate.[Month of Year] exist.
I would like to get the total for a specific year, regardless whether also a selection is made for a specific months or set of months.
In the cube calculated measures exist for various years that is defined as
([DimSalesDate].[Year].[Calendar 2011],[Measures].[Qty - Bottles])
I have not used this measure for some time but I am quite sure that it worked in the past but now it does not. I also tried
SUM(([DimSalesDate].[Year].[Calendar 2011],[Measures].[Qty - Bottles])) but that does not work either.
How do get the total for a specific year, regardless whether other filters from DimSalesDate are applied (such as Month of Year or Date)? Can it also work that filters from other Dimensions such as DimCustomer still have an effect?