Sorry this is going to be a bit detailed because I am sure that I am doing something wrong just not sure where. I have a PAW Report that we are using for data entry. The Dimension that I am having an issue with is called CapitalDetailLines. Each Project uses only a subset for the CapitalDetailLines depending on the Projects Business Unit. So the way the Report works is the user selects the Project, there is an MDX SUBSET that goes and get's the BusinessUnit for the Project and set's the business Unit, this works perfect. This business Unit is then used to define the subset using MDX for the CapitalDetailLines. This works perfect then the report opens up. So see below. This is what I want to see, the detail lines are the ROWS. the problem is that when a user Collapses and item, then expand the item it is no longer using the MDX. The 2nd Image is after that happens notice the extra items under County Bonds.


Here is the SubSet's Original MDX
{
TM1SubsetToSet([CapitalDetailLines].[CapitalDetailLines] , IIF([CapitalProject].[CapitalProject].CURRENTMEMBER.PROPERTIES("BusinessUnit") = "HNPRS" , "HNPRS" , IIF([CapitalProject].[CapitalProject].CURRENTMEMBER.PROPERTIES("BusinessUnit") = "HNPWT" , "HNPWT" , "HNPWS")))
}
After the user Expands, or contracts the list this is what it looks like.
{
DRILLDOWNMEMBER(DRILLUPMEMBER(TM1SubsetToSet([CapitalDetailLines].[CapitalDetailLines] , IIF([CapitalProject].[CapitalProject].CURRENTMEMBER.PROPERTIES("BusinessUnit") = "HNPRS" , "HNPRS" , IIF([CapitalProject].[CapitalProject].CURRENTMEMBER.PROPERTIES("BusinessUnit") = "HNPWT" , "HNPWT" , "HNPWS"))) , {[CapitalDetailLines].[CapitalDetailLines].[County Bonds]}) , {[CapitalDetailLines].[CapitalDetailLines].[County Bonds]})
}
I am confused and not sure how to prevent this from happening.
------------------------------
Jarrod McReynolds
------------------------------