I'm a newb to MDX queries and I am just getting started with the concepts. I know that I am supposed to forget what I know about SQL since the structure of MDX is completely different.To that end, I'm trying to run a pretty simple query, but I'm kind of hung up on the concept of a WHERE clause and Tuples. I get the data on the intersection of the cube, but then I want to limit it to a specific value for one member in one of the measures.Here's my query:[code="sql"]SELECT {[PC].[Code].Members } on columns,{[EE].[Em].members} on rowsfrom[Cube]where([PC].[Code].&[Reg1]) > 200[/code]If I get rid of the WHERE the query runs, but I see all of the data. In this case, I only want to see where there is a value of 200 or greater for Reg1. All of the members would show, but only when the WHERE condition was met.I hope I'm giving enough information. :w00t:
↧