Could you elaborate a little on how you implemented this query; assuming
that the year value can change in the query, how did you pass parameters to
the mdx query
thanks, much
-Anup
"Brian Altmann" <anonymous (AT) discussions (DOT) microsoft.com> wrote
Quote:
You can add the set of years:
select NON EMPTY
{ { [Measures].[Submitted Amount] : [Measures].[Benefits Not Covered]} *
{[Time].[2002],[Time].[2003]} } on columns,
{[Group].[Main Group].Members} on rows
from ClaimsII
BTW, * is an alternate Crossjoin syntax. If you need to return a long
period of consecutive years you can use the range expression :
|
[Time].[1998]:[Time].[2005] to avoid enumerating the intermediate members.
Quote:
HTH,
Brian
www.geocities.com/brianaltmann/olap.html |