Skip to main content
Skip table of contents

DIVISION (/)

Basic Overview

Description

Divides nodes by performing a join along the shared levels of the nodes (dimension union). The result has all the finest levels that are present in either of the nodes.

Signature

Node1 / Node2

Parameters

  • Node1: Dividend node, specified using the node name in single quotes (e.g. 'Profit')
  • Node2: Divisor node, specified using the node name in single quotes (e.g. 'Profit')

Example with all Shared Dimensions

Node1 = 

YearMeasure
20186
20194

Node2 = 

YearMeasure
20183
20191

Node1 / Node2 =

YearMeasure
20186 / 3 = 2
20194 / 1 = 4

Example with some Shared Dimensions

Node1 = 

YearProductMeasure
2018A4
2018B0
2019A4
2019B16


Node2 = 

YearMeasure
20182
20194

Node1 / Node2 = 

YearProductMeasure
2018A4 / 2 = 2
2018B0 / 4 = 0
2019A4 / 4 = 1
2019B16 / 4 = 4

Example without Shared Dimensions

Node1 = 

YearMeasure
20184
20198

Node2 = 

Measure
2

Node1 / Node2 =

YearMeasure
20184 / 2 = 2
20198 / 2 = 4
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.