• Well, I have finally been able to come up with the right MDX query, but, although it works in SSMS, it gives me an error in the BIDS project (calculated member):

    MdxScript(Price) (9, 5) Parser: The syntax for 'WITH' is incorrect.

    Anyone have any ideas why this is happening? 🙁

    Here is the query (again it works fine is SSMS!):

    WITH

    MEMBER [Measures].[wavg] AS

    'SUM( DESCENDANTS( [Fact Price Activity].[Hierarchy].CurrentMember, [Fact Price Activity].[Hierarchy].[Month]),

    [Measures].[Price]*[Measures].[Activity])

    /

    COUNT( DESCENDANTS ( [Fact Price Activity].[Hierarchy].CurrentMember, [Fact Price Activity].[Hierarchy].[Month] ) )'

    SELECT

    [Fact Price Activity].[Hierarchy].[Quarter].MEMBERS ON columns

    FROM

    [Price]

    WHERE

    [Measures].[wavg];

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]