Advanced hierarchy in PowerPivot -
I am creating a hierarchy in PowerPivot and there is a problem that I want to solve.
Hierarchy is 6 levels and see 4 columns of data. The two lowest levels are the order numbers and product groups (on the order number).
Issue:
While viewing the order number level (level 5), the values should be displayed in full command, even if some product groups are filtering
Does anyone know how to solve this?
Honestly, this is not a particularly well written question but I think that I know what you are trying to do.
Let's say you have a table called 'Sales Data' with the column; Order_Number, Product_Category, Product_Code and Sales
The following measures will allow you to slice your data through Product_Category and see sales for all transactions that contain a product in that category:
= count ( SM ('Salesdata' [Sales]), ALL ('Salesdata' [ProductCant], 'Salesdata' [Product Code]), Values ('Salesdata' [Order_Number])) Effectively
What it does is to open product accessories so that the result is not limited to what you cut Programming, but then filter your SUM () list of Ordr_aids that were included in the original selection.Post more information about your specific case and I can try and tighten it ....
Comments
Post a Comment