In SQL I can write this:
SELECT some_column_1, some_column_2 FROM some_table WHERE some_column_3 NOT IN ("blah", "bleh", "meh");
How to do the same in MDX? Notice that some_column_3 is not selected, but acts as filter. I know about EXCEPT thing in MDX, but I can use it only for something that selected on axes. How to put it in WHERE clause? Or how to get same result with something else?
For example, I need something like this:
SELECT some_measure ON COLUMNS FROM [Model] WHERE some_hierarchy NOT IN ("blah", "bleh", "meh");