If I have a simple MDX query such as:
SELECT NON EMPTY { [Measures].[Amount] } ON COLUMNS, NON EMPTY { [Date].[Date].[Date] } ON ROWS FROM [MyCube]
And I want to filter it by an Id an another dimension this is easy enough.
SELECT NON EMPTY { [Measures].[Amount] } ON COLUMNS, NON EMPTY { [Date].[Date].[Date] } ON ROWS FROM [MyCube] WHERE (Asset].[Id].&[123])
but If I have multiple Id's is there any way to pass these in without dynamically building up the MDX query?