on ‎2017 Apr 06 8:18 PM
Hello,
BPC 10.1 nw ,hana mdx enabled.
Member formula:
IIF([ENTITY].CURRENTMEMBER=[ENTITY].[PC_ASA],10,20)
----------------
[ENTITY].[PC_ASA] - This member is only in H2 hiearachy.
above member formula works only when i select an entity from H2.if i select an entity from H1 , report throws an mdx error "no result set..".
is there any syntax error in the formula? or is it a system bug.
thanks in advance.
Rekha
Request clarification before answering.
it works after changing formula as Below:
IIF([ENTITY].CURRENTMEMBER.NAME = "PC_ASA", 10, 20)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If other properties are working - put some unique value in another property and use it as workaround...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Other properties works fine..Only ID not working
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To check try some other property, not ID.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi vadim
IIF([ENTITY].CURRENTMEMBER.PROPERTIES("ID")="PC_ASA",10,20)
-->above format throws an ujo read exception error .It doesnt work for PC_ASA also.
thanks
rekha
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try:
IIF([ENTITY].CURRENTMEMBER.PROPERTIES("ID")="PC_ASA",10,20)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 11 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.