1

I need to have first filtered date in mdx that doesn't filter by date dimension that used in report rows.

I need that keep date filter but by pass dates that came in rows.

Please check Sample Image

sepideh.sp
  • 61
  • 6

1 Answers1

1

using MDX query you can use FirstChild property to get the first value of dimention members, assuming that the date dimension is called DimDate and the Date member is Date:

SELECT {DimDate.Date.[All].FirstChild} ON 1,
{ ... } ON 0
FROM [myCudbe]

Also you can use MIN() function to retrieve the minimum date value, the link above (official documentation) contains a good example.

Helpful links

Hadi
  • 36,233
  • 13
  • 65
  • 124