Re: Syntax for filtering on a date in MDX? -
06-20-2005
, 02:02 PM
I have found a way to do something like this, but it returns multiple
rows. I'd prefer to return just one row. Here's my alternative
SELECT {[Measures].[Unit Sales]} ON COLUMNs
, {[Time].[Month].[1], [Time].[Month].[2]} ON ROWS
from Sales
(In my actual cube, there's a different type of time dimension, so I
can input something like
{[Time YYMMDD].[Month].[2005 jun], [Time YYMMDD].[Month].[2005 may]}
Anyway, this is what I have now, and it works okay, I guess, just seems
clunky. I'd still appreciate any advice.
thanks!
Sylvia |