![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
|
Hi I need to create a calculated member in which I need to have a value if a level of one of the cube dimensions has a certain value, or zero otherwise it may be like this Iif( xxxxxxx = "CD", <<measure>>, 0 ) where xxxxxxx is the reference to the dimension level I have tried some options, but didn't work My question is if it is posible to do this and how Thanks |
#2
| |||
| |||
|
#3
| |||
| |||
|
|
Hi Ricardo, if I understand, you want to test if the actual member is the member you want?? You can't reference to the CurrentMember of a level, but you can reference to the CurrentMember of the dimension, so, you can use: IIF( [Products].CurrentMember is [Products].[Type].&[Fruits], 1, 0) |
![]() |
| Thread Tools | |
| Display Modes | |
| |