Reference Updated April 8, 2026

BASELINE

Category: Assumptions & result sets

Overview

The BASELINE function returns the value of a node with no assumptions applied. Assumptions are removed from the referenced node and all upstream nodes that affect it.

Use this function to compare the effect of assumptions by seeing what a node’s value would be without them.

Syntax

BASELINE('Node' [, "useVariablesFrom"])

Example usage: BASELINE('Revenue')

Parameters

ParameterDescriptionTypeRequiredDefault
NodeInput node, specified using the node name in single quotes (e.g.'Revenue')Node referenceYes
useVariables FromDetermines which variable values are used in the calculationKeywordNo"SCENARIO"

useVariablesFrom options:

  • "SCENARIO": Uses variable values as overridden by the scenario. This is the default.
  • "PROJECT": Uses the original project default values instead of scenario overrides.

Output Shape

AspectBehavior
DimensionalitySame as the input node.
ValuesThe input node’s values computed without any assumptions applied to it or its upstream nodes.
Row countSame as the input node’s baseline values.

Watch Out

  • The input must be a single node reference. Combinations of operations (e.g. 'A' + 'B') are not valid.
  • If the model has multiple baselines, the baseline of the current scenario is used.
  • The PROJECT mode only applies project default variable values to nodes calculated within the BASELINE function. Upstream nodes outside the BASELINE call still use scenario variable values.
  • BASELINE removes assumptions from the node and all upstream nodes. To remove assumptions from only the specified node while keeping upstream assumptions, use NONSIM instead.

Examples

Baseline values without assumptions

This example shows the baseline result of multiplying two nodes when no assumptions or variable overrides are applied. The project default variable $MY_VAR is set to 10.

Project default variables: $MY_VAR = 10

Input node: Node 1

YearValue
2025$MY_VAR = 10
2026$MY_VAR = 10
2027$MY_VAR = 10
2028$MY_VAR = 10

Input node: Node 2

YearValue
20251
20261
20271
20281

Formula: 'Node 1' * 'Node 2'

YearValue
202510
202610
202710
202810

These are the baseline results with no assumptions applied.

Values with scenario overrides and assumptions

This example shows how the same nodes look when a scenario overrides $MY_VAR to 20 and assumptions are activated on both nodes.

Variable override via scenario: $MY_VAR = 20

Input node: Node 1 (with overridden $MY_VAR as ‘Base’ and activated assumptions as ‘Change’)

YearBaseChangeResult
202520020
2026201030
2027202040
2028203050

Input node: Node 2 (with the initial measures as ‘Base’ and activated assumptions as ‘Change’)

YearBaseChangeResult
2025112
2026123
2027134
2028145

Result Node formula: 'Node 1' * 'Node 2'

YearBase (Node 1 * Node 2)ChangeResult
202520 * 2545
202630 * 3595
202740 * 45165
202850 * 55255

Comparing SCENARIO vs PROJECT mode

This example shows the difference between the two modes: SCENARIO uses the variable value overridden by the scenario (20), while PROJECT uses the original project default (10).

Formula: BASELINE('Result Node') = BASELINE('Result Node', "SCENARIO")

Year→ BASELINE Result
202520
202620
202720
202820

BASELINE removes all assumptions but keeps the scenario’s variable override ($MY_VAR = 20).

Formula: BASELINE('Result Node', "PROJECT")

Year→ BASELINE Result
202510
202610
202710
202810

PROJECT mode also reverts the variable to its project default ($MY_VAR = 10).


FunctionWhen to use instead
NONSIMWhen you only want to remove assumptions from the node itself. BASELINE removes assumptions from the node and all upstream nodes; NONSIM only removes them from the specified node.
Was this page helpful?