Microsoft Knowledge Base Article
This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved.
Terms
of Use |
Trademarks
Article ID: 304529 - Last Review: February 22, 2007 - Revision: 3.4
INF: MDX: How to Test for the Top Most Level in a Hierarchy
This article was previously published under Q304529
When you traverse a dimension through a Multidimensional Expressions (MDX), you may have to determine if you are at the top most level of the hierarchy. This article shows you four MDX expressions that allow you to find out if you are at the top most level of the hierarchy.
The examples print the word "Top" next to the
All Promotions member and "Not Top" next the rest of the members, so that you can see which member is on the top most level.
The following two MDX expressions use the
IIF function to test if you are at the top level. These expressions work regardless if there is a
(All) level in the dimension.
with member measures.test as'iif ([Promotions].CurrentMember.Parent is null,"Top","Not Top")'
Select {[Measures].test} on columns,
[Promotions].members on rows
from sales
-or-
with member measures.test as'iif ([Promotions].CurrentMember.Level.Ordinal = 0,"Top","Not Top")'
Select {[Measures].test} on columns,
[Promotions].members on rows
from sales
If your dimension has an
(All) level, you can test explicitly for the top level. For example:
with member measures.test as'iif ([Promotions].CurrentMember.level.name = "(All)","Top","Not Top")'
Select {[Measures].test} on columns,
[Promotions].members on rows
from sales
However, it would be better to compare the objects by using the
IS comparison operator:
with member measures.test as'iif ([Promotions].CurrentMember.Level is [Promotions].[(All)],"Top","Not Top")'
Select {[Measures].test} on columns,
[Promotions].members on rows
from sales
NOTE: It is always better to compare objects such as Null or [Promotions].[(All)] by using the
IS operator rather than comparing two strings. Comparing objects is faster and the equal (=) operator for string comparison is case sensitive and less flexible.
APPLIES TO
- Microsoft SQL Server 2000 Analysis Services
- Microsoft SQL Server OLAP Services
Community Feedback System
Very often, it takes hours to solve a problem. Very often, you've looked high
and low, and have tried a lot of solutions. When you finally found it, chances
are, it was because someone else helped you. Here's your chance to give back.
Use our community feedback tool to let others know what worked for you and what
didn't.
Please also understand that the community feedback system is not warranted to be
correct, it's simply a system that we've built to let people try and help each
other. If something in a feedback response doesn't make sense to you, or you're
not comfortable making changes that the feedback talks about (like registry
edits), please consult a professional.
Thank you for using kbAlertz.com Feedback System.
-- Scott Cate
Be the first to leave feedback, to help others about this knowledge base
article.
(Optional) Name
(Optional)
Public URL Or Email
Comments
No
HTML -- Text Only Please