MDX Question

  • Hi

    I am new to MDX.

    I have this

    select [Project].[Project Phase].members on columns

    , non empty ([Project].[Department].children, [Date].[Month].[Month]) on rows

    from theCube

    At the minute it looks like a count as the values but id like to put Project.Cost.Cost as the value

    could anyone help please

    thanks

  • SELECT

    { [Project].[Project Phase].Members, Project.Cost.Cost } ON COLUMNS,

    NON EMPTY

    { [Project].[Department].Children, [Date].[Month].[Month] } ON ROWS

    FROM theCube

    Igor Micev,My blog: www.igormicev.com

  • thanks a lot

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply