Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a master Customer dimension (that I don't maintain). My fact table includes customer info. When I compile the cube, everything looks good, by browsing the cube I see my fact rows with only customers that have measure values.

What I'm trying to do should be fairly simple, but I'm stuck. All I want to do is filter my dimension so that it only displays valid customers.

For example, in Excel I can select Customer name and my fact values and I see the list of customers that contain values, but when I click on the filter option of the Customer list, I see all customer, even invalid. I only want to see valid customers!

There's a IsValid flag in the Customer dimension that I'd like to use to only show valid customers.

So, how do I filter the Customer dimension list to only show customers where IsValid =true? MDX query?

Any help would be appreciated.
Thanks, -Alex

share|improve this question

1 Answer

Alex,

On the basis that your pivot will contain a measure, the customer table is related to your fact table and the measure you want to filter is called [Values] then:

[Valid Customer Values] = CALCULATE([Values],dimCustomer[IsValid]="Y")

Jacob

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.