007
007

Reputation: 2186

Filter out a member from SSRS (MDX)

Ok, So I have a dim called Employee that has Employee_ID and the ID I am trying to filter out from the report table is &[12345].

How would I go about filtering out a record for just that employee ID from my report table?

Upvotes: 0

Views: 327

Answers (1)

Benoit
Benoit

Reputation: 1993

You can use the Except function:

Except('a set that contains employees', {'the employee you want to exclude'})

Upvotes: 3

Related Questions