All,
I have the following MDX statement which populates my reporting services parameter for Month:
WITH MEMBER
[Measures].[Unquie] as [Date].[Date].currentmember.uniquename
member [measures].[name] as [Date].[Date].currentmember.member_caption
SELECT
{[Measures].[Unquie],
[measures].[name]}
on 0,
[Date].[Date].[Month].members on rows
from
[Disposal]
It shows :
April
May
June
...
March
When I run the report I want it to default to the current Month we are in??
how can i do this in reporting serives