MDX Essentials: Basic Set Functions: The Filter() Function - Page 4February 9, 2004 Our modified query contains a Filter() function similar to the one we presented in the Remarks section above, but with a slight complication. The example not only demonstrates the operation of the function, but also accomplishes a complementary objective: It shows how we can easily compare the same measure under different dimensional scenarios - that is, in two different sets. In the current example, Units Shipped in two different quarters is compared by adding a Boolean expression as the search condition. 11. Select File -> Save As, and name the query MDX16-2. Leave the query open, once again. As we have already noted, the Filter() function can be used in conjunction with other functions to produce more complex results. Let's compound the business requirement we outlined earlier, and create an illustrative example of just such a case. Let's say that the information consumers, while satisfied with the response we have supplied using the previous query, have been emboldened to ask for more. (This is probably a scenario well known to readers who act in a support capacity of this nature in the business world.) The consumers now state that they want to see the list of products that have experienced a decrease in shipping volume, as before, but this time they would like to see the products concerned within the context of the warehouses involved. In other words, they wish to see the products whose shipping volumes declined, grouped by the warehouses involved. We can handle this easily with the introduction of a CrossJoin() function in our specification of the rows axis. To do so, we will take the following steps: 12. Modify the ON ROWS specification of the query from the following:
{FILTER (
[Product].[Product Category].MEMBERS,
(([Time].[1998].[Q1] , [Measures].[Units Shipped]) >
([Time].[1998].[Q2],[Measures].[Units Shipped])))} ON ROWS
to the following:
{FILTER (
CROSSJOIN (
[Warehouse].[City].MEMBERS,
[Product].[Product Category].MEMBERS),
(([Time].[1998].[Q1] , [Measures].[Units Shipped]) >
([Time].[1998].[Q2],[Measures].[Units Shipped])))}
ON ROWS
The modified query appears in the Query pane as depicted in Illustration 4.
13. Replace the existing comment line for the query with the following: -- MDX16-3: Tutorial Query No. 3 14. Execute the query by clicking the Run Query button in the toolbar. The filtered dataset is returned, as partially depicted shown in Illustration 5.
Our modified query meets the objective established by the information consumers, and displays the products with declining shipping volumes over the Q1 and Q2 operating periods, by the warehouse location. We can thus see that, regardless of the "compound" nature of the set in our Filter() function, the results are returned with accuracy and completeness. 15. Select File -> Save As, and name the query MDX16-3. Many far more sophisticated uses for the Filter() function are possible, and, as we build our functional toolset within the MDX Essentials series in the months ahead, we will employ the function in numerous ways. It is often more efficient to ask for subset of a larger set than to specify each of the targeted set's member tuples. Summary...In this lesson, we explored the powerful Filter() function, whose general purpose is to filter out parts of a set to return a precise subset to meet our needs. The Filter() function offers many flexible and innovative uses, and, as we have seen, can incorporate the operation of additional functions within its search condition to allow us to build substantial logic into our filtering efforts. The Filter() function is an excellent tool for the support of precise analysis. In addition to discussing the purpose and operation of the Filter() function, we illustrated its application in a couple of practice exercises. We began with an unfiltered query, to which we then applied Filter(), to show its effectiveness in meeting a business need to return a subset of the initially unfiltered dataset. We then substituted a more complex Filter() function into our query to provide a solution within a second example, illustrating the way that we can combine other functions with a Filter() function to return more sophisticated datasets. Finally, throughout the creation and execution of the practice examples, we discussed the results we obtained to confirm our understanding of the function and its operation. » See All Articles by Columnist William E. Pearson, III Discuss this article in the MSSQL Server 2000 Analysis Services and MDX Topics Forum. MDX Essentials Series
The LEVEL_NUMBER Member Property
The LEVEL_UNIQUE_NAME Intrinsic Member Property Intrinsic Member Properties: The HIERARCHY_UNIQUE_NAME Property Intrinsic Member Properties: The DIMENSION_UNIQUE_NAME Property Further Combination of BottomCount() with Other MDX Functions Combine BottomCount() with Other MDX Functions to Add Sophistication Basic Set Functions: The BottomCount() Function, Part I Intrinsic Member Properties: The MEMBER_VALUE Property Intrinsic Member Properties: The MEMBER_UNIQUE_NAME Property Intrinsic Member Properties: The MEMBER_NAME Property Intrinsic Member Properties: The MEMBER_KEY Property Intrinsic Member Properties: The MEMBER_CAPTION Property Set Functions: The StripCalculatedMembers() Function Set Functions: The AddCalculatedMembers() Function MDX Numeric Functions: The Min() Function MDX Numeric Functions: The Max() Function Set Functions: The .AllMembers Function MDX Essentials: Set Functions: The MeasureGroupMeasures() Function String Functions: The .Properties Function, Part II String Functions: The .Properties Function Logical Functions: IsGeneration(): Conditional Logic within Filter Expressions MDX Scripting Statements: Introducing the Simple CASE Statement Logical Functions: IsGeneration(): Conditional Logic within Calculations Logical Functions: IsAncestor(): Conditional Logic within Filter Expressions MDX Clauses and Keywords: Use HAVING to Filter an Axis Logical Functions: IsAncestor(): Conditional Logic within Calculations Logical Functions: IsSibling(): Conditional Logic within Filter Expressions Logical Functions: IsSibling(): Conditional Logic within Calculations MDX Operators: The IsLeaf() Operator: Conditional Logic within Filter Expressions MDX Operators: The IsLeaf() Operator: Conditional Logic within Calculations MDX Numeric Functions: The .Ordinal Function Other MDX Entities: Perspectives MDX Operators: The IS Operator MDX Set Functions: The Distinct() Function MDX Set Functions: The ToggleDrillState() Function Set Functions: The DrillUpLevel() Function Set Functions: The DrillDownLevelTop() and DrillDownLevelBottom() Functions MDX Set Functions: DrillDownLevel() MDX Set Functions: The DRILLUPMEMBER() Function MDX Essentials: Set Functions: The DRILLDOWNMEMBERTOP() and DRILLDOWNMEMBERBOTTOM() Functions MDX Essentials : Set Functions: The DRILLDOWNMEMBER() Function MDX Essentials: Drilling Through with MDX: The DRILLTHROUGH Statement MDX Essentials: String Functions: The .UniqueName Function MDX Essentials: String Functions: The .Name Function MDX Essentials: String / Numeric Functions: The CoalesceEmpty() Function MDX Essentials: Basic Set Functions: The TopCount() Function, Part II MDX Essentials: Basic Set Functions: The TopCount() Function, Part I MDX Essentials: Enhancing CROSSJOIN() with Calculated Members MDX Essentials: Set and String Functions: The GENERATE() Function MDX Essentials: The CROSSJOIN() Function: Breaking Bottlenecks MDX Essentials: String / Numeric Functions: More on the IIF() Function MDX Essentials: String / Numeric Functions: Introducing the IIF() Function MDX Essentials: Logical Functions: The IsEmpty() Function MDX Essentials: Basic Set Functions: The EXTRACT() Function MDX Essentials: Numeric Functions: Introduction to the AVG() Function MDX Essentials: Basic Member Functions: The .Item() Function MDX Essentials: Basic Set Functions: Subset Functions: The Subset() Function MDX Essentials: Basic Set Functions: Subset Functions: The Tail() Function MDX Essentials: Basic Set Functions: Subset Functions: The Head() Function MDX Essentials: Basic Set Functions: The CrossJoin() Function MDX Essentials: Basic Numeric Functions: The Count() Function MDX Essentials: Basic Set Functions: The Filter() Function MDX Essentials: Basic Set Functions: The EXCEPT() Function MDX Essentials: Basic Set Functions: The Intersect() Function MDX Essentials: Basic Set Functions: The Union() Function MDX Essentials: Basic Set Functions: The Order() Function MDX Essentials - MDX Time Series Functions, Part III: The LastPeriods() and ParallelPeriod() Functions MDX Time Series Functions, Part II: The OpeningPeriod () and ClosingPeriod() Functions MDX Essentials - MDX Time Series Functions, Part I: PeriodsToDate() and Kindred Functions MDX Essentials: MDX Member Functions: "Relative" Member Functions MDX Member Functions: The Cousin () Function MDX Essentials: Member Functions: More "Family" Functions MDX Member Functions: The "Family" Functions MDX Essentials: MDX Members: Introducing Members and Member MDX Essentials : MDX Operators: The Basics MDX Essentials: Structure of the MDX Data Model MDX at First Glance: Introduction to SQL Server MDX Essentials |