Holding

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

Syntax

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

where Entity is the name of a valid Entity dimension 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.

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