• robinrai3 (5/14/2013)


    check this out :

    MEMBER MyValue as 'DimX].[DimId].currentmember.properties("value")'

    SELECT

    {[DimX].[DimId].Members, MyValue} ON ROWS,

    [Measures].[Mea_1] ON COLUMNS

    FROM MyCube

    also check out http://www.mdxsamples.com/ ...on why using properties is slow (see bottom para)

    Thanks for responding.

    I see how you declare the member before the select. Is it possible to do this inline, after the select?