Filter Dimension Members that don't have any Values in selected Measures

  • Hi there,

    I have currently been put up on a Task at work to filter out Members of every Dimension used later in Reports (Reporting Services) or Excel for which there is no Values in the used Measures.

    My question is straight up, How is this done ?

    I believe many might have had to deal with this issue at some time,

    my hope is that it can be done directly on Analysis Services (Some Property field that Needs changing), please avoid any mdx, since i can't use it on Client Tools such as Excel.

    Many thanks to you all in advance,

    I'm looking Forward to your Help 🙂

    this is my Problem

  • The answer will probably be along the lines of writing MDX within the cube design to add a set to the cube to show only the members of the dimension with values. In the example you gave this looked with the ADV2012 cube. These are available in Excel within the pivot table

    To filter the dates that are valid for Reseller Sales measures (Order Quantity and Sales Amount)

    CREATE DYNAMIC SET CURRENTCUBE.[Valid Set of Reseller Sales Date] AS

    NONEMPTY(

    [Order Date].[Date].[Date].MEMBERS, -- This is the full set to be filtered

    {

    [Measures].[Reseller Order Quantity],

    [Measures].[Reseller Sales Amount]

    } -- This is the set of measures to filter the list for fully null values

    )

    Fitz

  • Hi there, thanks for your answer, sadly it doesn't really fix my Problem

    Think about the following Scenario:

    Say i Have 100 Customers that get into a Dimension, and i filter for the current Month, and now only 12 of them have Values in the Measure i am using. currently when i try to filter out specific Customers, i get 100 as oposed to the 12 that could really concern me.Isn't there a way to do this, must be? shouldn't it,

    i mean it must have been annoying to somebody else who was trying to filter and than head to scroll through a bazillion values till he found what he needed.

    Thanks again

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

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