Skip to content

cube.reevaluateElement

Re-evaluates cube formulas that are affected by a specific element within a dimension.
Optionally, feeders can also be rebuilt and applied during the process.

js
cube.reevaluateElement(dimensionNameOrId, elementName, runFeeders);

Parameters

  • dimensionNameOrId - Name or identifier of a dimension.
  • elementName - Name of the element within the dimension.
  • runFeeders - Boolean (true or false). Whether to run feeders as part of the re-evaluation.

Example

js
cube.reevaluateElement("Region", "Australia", false);
cube.reevaluateElement("Region", "New Zealand", true);