Hi,
I am trying to create an object in OLAP universe with the below code but i was unable to parse it, getting below mentioned error.
=If(IsNull([L06 Profit Center]) = 1 And IsNull([L05 Profit Center]) = 1 And IsNull([L04 Profit Center]) = 1 And IsNull([L03 Profit Center]) = 1) Then [L02 Profit Center]
ElseIf (IsNull([L06 Profit Center]) = 1 And IsNull([L05 Profit Center]) = 1 And IsNull([L04 Profit Center]) = 1 And IsNull([L03 Profit Center]) = 0) Then [L03 Profit Center]
ElseIf (IsNull([L06 Profit Center]) = 1 And IsNull([L05 Profit Center]) = 1 And IsNull([L04 Profit Center]) = 0 And IsNull([L03 Profit Center]) = 0) Then [L04 Profit Center]
ElseIf (IsNull([L06 Profit Center]) = 1 And IsNull([L05 Profit Center]) = 0 And IsNull([L04 Profit Center]) = 0 And IsNull([L03 Profit Center]) = 0) Then [L05 Profit Center]
Else [L06 Profit Center]