Holding

Gets the holding company for the current or specified Entity or parent dimension member. This function can be used in these types of rules:

  • Calculation

  • Translation

  • Consolidation

  • Allocation

Syntax

HS.Entity.Holding("Entity")
HS.Entity.Holding("")
HS.Parent.Holding("Entity")
HS.Parent.Holding("")

where Entity is the name of a valid Entity dimension or parent member. You can use a blank string ("") to apply this function to the current member.

Return Value

A string that contains the name of the holding company for the specified entity member or parent.

Example

In this example, if Europe is the holding company for the entity France, then statements between the If...Then and End If lines are executed.

If HS.Entity.Holding("France") = "Europe" Then
...
End If