I have an MDX statement with the following members on the row :
NON EMPTY { [Date].[Wcy Week Starting Date].&[2013-11-04T00:00:00]: [Date].[Wcy Week Starting Date].lastchild}
The : in MDX gives me the range. The issue in this case is that the rows being returned include the latest week which is only partially complete. I only need data up to the full previous week.
I'm executing this query in SSRS.
I tried
NON EMPTY { [Date].[Wcy Week Starting Date].&[2013-10-07T00:00:00]: [Date].[Wcy Week Starting Date].lastchild.prevmember}
But this returned the same result.
Any ideas on selecting the week commencing from 07th Oct to 4th Nov (as of today). In the past I've used SSRS expressions to manage this. I wondered if there's a more direct way to do it with MDX.