![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Dear NG We have a measure called Income. The user now wants to filter the result as hereafter: Example: Income is bigger than 1000 but smaller than 1500 $. I know that measures can be filtered by select the dimensions. But is it possible to filter the returned result again? Thanks for help Mike |
#3
| |||
| |||
|
|
You can use the Filter() MDX function to do this. As the first argument, give it the set of tuples to be filtered. As the second argument, define a boolean expression that tests for the values you're interested in. Eg. Filter( MyDim.MyLevel.Members, ((MyDim.CurrentMember, Income) > 1000) AND ((MyDim.CurrentMember, Income) < 1500 )) Hope this helps, - Matt Carroll -- This posting is provided "AS IS" with no warranties, and confers no rights. "mike" <michaelhenzi (AT) hotmail (DOT) com> wrote in message news:Og6gdU%23kDHA.1764 (AT) tk2msftngp13 (DOT) phx.gbl... Dear NG We have a measure called Income. The user now wants to filter the result as hereafter: Example: Income is bigger than 1000 but smaller than 1500 $. I know that measures can be filtered by select the dimensions. But is it possible to filter the returned result again? Thanks for help Mike |
![]() |
| Thread Tools | |
| Display Modes | |
| |