I need apply a filter over a data item created or existing member. For example, I want filter the 'CA' state where cities have more than 1000.000 people. But this filter will apply only for 'CA' state and not for others states. And the cities aren't showed on the crosstab. Ex:
State $ percapita
CA 2.000.000,00 <---- only this measure is filtered, using other dimension
TX 1.203.000,00
Regards,
Marcelo
You can create a list in which you put your two item "State" and "percapita". Then, make a right-click on the list and click to "go to query". Then in the left panel click on the "toolbox" and choose the "filter". Put it in the details filters. A new window appears. You can now write your expression like ([State]='CA' and [percapita]>100000) or [State]<>'CA'