Hi,
Example:
u have 2 dimensions in a PivotMap: YEAR, MONTH,
2005:
-january,
-fabruary,
-march,
...
2006:
-january,
-february,
-march,
...
it is quite easty to filter a month:
PivotMap1.Dimensions[index].Items[i].State property
but it will filter all months in the cube - hiding 1 month (february) will hide this month in all visible years:
2005:
-january,
-march,
...
2006:
-january,
-march,
...
What if i would like to hide 1 month but only in year 2005:
2005:
-january,
-march,
...
2006:
-january,
-february,
-march,
...
In my real example it is not years and months, I have some rows in a Fact table with are unique, but some of the dimension values have the same names. I mean is it possible to filter by fact row values, or map row values or something like this?
if the example isn't too good i wil send another one.
thx,