TM1 Performance Modeler expression syntax
Posted: Tue May 02, 2017 8:34 am
Hello everybody,
I’m trying to implement a consolidated-level expression on a dimension using the performance modeler 10.2.2. It works fine for simple formulas. The performance modeler creates the rules and feeders in the cube, according to the dimensional expressions. The problem is with a formula that pulls values from another cube.
The normal syntax of a rule in this case is:
The TM1-Funktion in the performance modeler suggests at the beginning the syntax:
although the correct syntax would be:
I’m getting the error message “Wrong number of arguments” from the performance modeler, when I’m trying to write the expression in the column Consolidated-level Expression:
What syntax does the performance modeler expect in this case?
I’m trying to implement a consolidated-level expression on a dimension using the performance modeler 10.2.2. It works fine for simple formulas. The performance modeler creates the rules and feeders in the cube, according to the dimensional expressions. The problem is with a formula that pulls values from another cube.
The normal syntax of a rule in this case is:
Code: Select all
['ElementName']=C:DB('CubeName', !Dim1, !Dim2, !Dim3, 'ElementName');
Code: Select all
DB('<CubeName>')
Code: Select all
DB(CubeName, e1, e2, [...e256])
Code: Select all
DB(CubeName, Dim1, Dim2, Dim3, 'ElementName')