Method

Gets the consolidation method for the specified member. If there is more than one non-zero value, the system returns the first one found. This function can be used in these types of rules:

  • Calculation

  • Translation

  • Consolidation

  • Allocation

Syntax

HS.Node.Method("POVExpression")

where POVExpression is a combination of Scenario. Year, Period, and Entity members.

Return Value

A string that specifies the consolidation method for the specified point of view.

Example

In this example, if the method for the point of view is GLOBAL, then statements between the If...Then and End If statements are executed.

If HS.Node.Method("S#Actual.Y#2014.P#January.E#Regional.Connecticut") = "GLOBAL" Then
  ...
End If