hi all,
We're using BPC 10MS. We need to create a Member formula on CATEGORY dimension. This formula needs to test a property value of another dimension named UNIT (ENTITY dimension type).
For example we create a formula which returns 1 when the property CALC of dimension ENTITY is equals to N else 0.
We wrote the below formula:
IIF([UNIT].CURRENTMEMBER.PROPERTIES("CALC")="N", 1, 0),SolveOrder=99
When we process the dimension we have the following error:
CATEGORY].[#C_FILIERE2]: The dimension '[UNIT]' was not found in the cube when the string, [UNIT], was parsed.
where C_FILIERE_2 is the member used to test the formula.
We tried the below syntax without sucess:
IIF([UNIT].[UNIT].CURRENTMEMBER.PROPERTIES("CALC")="N", 1, 0),SolveOrder=99
IIF([UNIT].[H1].CURRENTMEMBER.PROPERTIES("CALC")="N", 1, 0),SolveOrder=99
IIF([UNIT].[PARENTH1].CURRENTMEMBER.PROPERTIES("CALC")="N", 1, 0),SolveOrder=99
When we use TIME dimension instead of UNIT it works fine:
IIF([TIME].CURRENTMEMBER.PROPERTIES("CALC")="N", 1, 0),SolveOrder=99
Any idea to enable BPC to recognize UNIT dimension ?
best regards,
Romuald