I have two different dimensions i want to present in MDX Query with drilldown
Dim 1:
Country, CountryId
Italy,1
Mexico,2
England,3
dim 2:
Product, ProductId
Shoes,1
Shirts,2
Bags,3
Fact_Data:
Country,Product,Amount
1,2,33
3,1,50
2,3,64
1,1,100
3,1,70
2,2,44
when i join the dimensions in MDX Query:
select [Measures].[SaleAmount] on 0, crossjoin([Country].[Country].[Country].[Italy],[Product].[Product].[Product].[Product]) on 1 from [cube]
the data presented will be:
italy Shoes 100
Shirts 33
Bags 0
Mexico Shoes 0
Shirts 44
Bags 64
...
And i want to present the data with drilldown option from country to product
+italy 133
+Mexico 108
+England 120
I'm using icCube