MDX LastChild Function

The MDX LastChild function will return the Last Child member belongs to the specified member. For example, If you know a single customer name and if you want to find the Sales of the Last customer, then you can use this MDX LastChild function. MDX LastChild Function Syntax The basic syntax of the LastChild in … Read more

MDX Ascendants Function

The MDX Ascendant function will return the associate Parent member of the specified member at all levels until it reaches Level 0. Or, We can say, Ascendant Function will return all the ascendants of a specified Member. For instance, you know the customer’s name. If you want to find the Post Code, City, State, and … Read more

MDX Siblings Function

The MDX Siblings function will return all the Child members that belong to the parent of a specified member. Or We can say, MDX Siblings function will return all the Siblings of a specified member. For example, If you know a single customer name and if you want to find the Sales of all the … Read more

MDX FirstChild Function

The MDX FirstChild function will return the First Child member belongs to the specified member. For example, If you know a single customer name and if you want to find the Sales of a first customer, then you can use this MDX FirstChild function. MDX FirstChild Function Syntax The basic syntax of the MDX FirstChild … Read more

MDX FirstSibling Function

The MDX FirstSibling function will return the First Child member that belongs to the parent of a specified member. For example, If you know a single customer name and you want to find the Sales of a first customer, then you can use this FirstSibling function. MDX FirstSibling Function Syntax The basic syntax of the … Read more

MDX Children Function

How to write Children function with examples?. The MDX Children function will return the associate Child member that belongs to the specified member.  For instance, If you are an Amazon developer and If one of your customers is looking for iPod in Amazon.com. As a developer, you must display all the Apple products at the … Read more

MDX PrevMember Function

The MDX PrevMember function will return the same level member at the Previous position. MDX Prevmember Function Syntax The basic syntax of the Prevmember Function in Multidimensional Expression is as shown below: Member_Expression.PREVMEMBER Member_Expression: Any Multidimensional Expression that returns valid Member. The MDX Prevmember Function is used to move backward between Members at the same … Read more

MDX NextMember Function

The MDX NextMember function will return the same level member at the Next position. MDX Nextmember Function Syntax The basic syntax of the Nextmember Function in Multidimensional Expression is as shown below: Member_Expression.NEXTMEMBER Member_Expression: Any Multidimensional Expression that returns valid Member. The Nextmember Function is used to move forward between Members at the same level. … Read more

MDX LAG Function

The MDX Lag function is used to navigate between same level members and returns the members at the specified position. For example, If you want to navigate to a particular member, then we can use this MDX Lag function. MDX Lag Function Syntax The basic syntax of the Lag Function in Multidimensional Expression is as … Read more

MDX LEAD Function

The MDX Lead function is used to navigate between same level members and returns the members at the specified position. For example, If you want to navigate to a particular member, then we can use this LEAD function. MDX Lead Function Syntax The basic syntax of the LEAD Function in Multidimensional Expression is as shown … Read more