EPM 10 SP15 NW
This one is really challenging me. I have a report with local member to display comment. The twist is one dimension member need to be derived from the row axis member of another dimension. If i hardcode the dimension member, the local member formula works great but the moment i replace that with a dynamic calculation it is throwing
"#Error - Impossible to apply local member formula."
Am attaching what i am trying to build and also the local member formula i have.
In the report:
- Columns Comment1 and Comment 2 are local members
- Entity , Product are Row axis columns
- Part dimension (not in row or columns axis) is the concatenation of first 2 characters of Entity and Product member
In the formula to display comment:
F16 is the row axis Entity member
G16 is the row axis Product member
AE45678 is the Part dimension member
All other anchored cells are fixed dimension members in cells outside report area
=if(I16<>"Total:",EPMCommentFullContext(,$B$23,F16,G16,$B$17,$B$18,$B$19,$B$20,$B$22,"AE45678"),"")
Above local member formula works fine but hardcoded value(AE45678) for testing
=IF(I16<>"Total:",EPMCommentFullContext(,$B$23,F16,G16,$B$17,$B$18,$B$19,$B$20,$B$22,CONCATENATE(LEFT(F16,2),G16),"")
This throws "#Error - Impossible to apply local member formula." in the cell. Not sure whats going wrong there and the right way to achieve comment display
~Dilkins