Hi Frds,
I am New in MDX level,
I want difference between filter() and where condition in MDX query level.
I am try to MDX queries in the follwing way.
1)select col_A on columns,
filter(Date,Country) on rows
from Cube
// this query level showing some results.
2)select col_A on columns
from Cube
where
(Date,Country)
//this query level showing some results
Query1 results and Query2 results are not same.
I am try to follwing another MDX query.
3)select col_A on columns,
filter(Date) on rows
from Cube
where (Country)
this query level error message showing.
Error:"Query (8, 11) Too few arguments were passed to the 'FILTER' function. The minimum argument count for the function is 2."
Please send me Explanation with examples.
Regards
Rama