I have a question based on the need to use OR operator in a MDX query.
How can I filter a query using something like this conceptual code?
[Customer].[City]=[Customer].[City].&[Austell]&[GA]
OR
[Geography].[City]=[Geography].[City].&[Austin]&[TX]
From adventure works DW?
Thanks!
Chenn.
Ronen
Here is a query which will give internet sales for country australia
or canada
select [Measures].[Internet Sales Amount]
on 0
from [Adventure Works]
where {[Customer].[Customer Geography].[Country].&[Australia],
[Customer].[Customer Geography].[Country].&[Canada]}
Amish Shah
http://shahamishm.blogspot.com
Thanks Amish!
Is it posible to use the "OR" while using 2 differnt hirarchies?
where
{[Customer].[Customer Geography].[Country].&[Australia],
[Date].[Date].&[20010706]}
Thanks again!
Chenn
hI,
In this case i mean to use a "weak" or, which mean "OR a OR b OR the
two of them".
Thanks!
Chenn