Forum Discussion
Decomposition Tree last node Value is not displaying
- 1 year ago
Yes, It resolved.
Thank you
Sumnima39 Sounds like you need to create an additional measure for that last node so that the measure forms the relationship correctly. Hard to be more specific without more information, sample data, sample PBIX, etc.
- Sumnima391 year agoFrequent Visitor
Yes, I created the measure, but it wasn’t helpful. The measure pulls the data correctly, but when I add it to the node, it doesn’t work as expected.
- v-dineshya1 year agoCommunity Support
Hi Sumnima39 ,
Thank you for reaching out to the Microsoft Community Forum.
If you are using a column (Trade) from the fact table that already has a relationship with your measures but you have used a disconnected table for the “Explain By” path, the aggregation might break at the final node. This causes the node to show the category label but not aggregate the measure because of a context mismatch.
If the final node is categorical and no actual value is being evaluated within that node's filter context, you get a blank or missing value. This is common when the measure doesn’t respond well to the column context introduced by the last node.Please try below things to fix the issue
1. If possible, avoid using a column from the disconnected table as the final node. Instead, use the Trade column from the same table the measure is derived from.
2. If possible, Modify Measure with ISINSCOPE or HASONEVALUE DAX function
Example :
Trade Measure =
IF (
ISINSCOPE('FactTable'[Trade]),
[BaseMeasure],
BLANK()
)Or if you are using a disconnected table (TradeDim):
Trade Measure =
VAR SelectedTrade = SELECTEDVALUE('TradeDim'[Trade])
RETURN
CALCULATE(
[BaseMeasure],
FILTER('FactTable', 'FactTable'[Trade] = SelectedTrade)
)
Note: This will give your measure the row context at the final node level. Make sure your Decomposition Tree's “Analyze” field uses only numeric measures, not columns. Only the "Explain By" pane should contain columns. If you are using dynamic measures, ensure the measure logic is correctly switching depending on the selection in the disconnected slicer.I hope this information helps. Please do let us know if you have any further queries.
Regards,
Dinesh
Regards,
Dinesh
- Sumnima391 year agoFrequent Visitor
Using a numeric value measure displays correctly, but my requirement is to show a list of trades rather than a single number. How can I do that
- Sumnima391 year agoFrequent Visitor
Defining individual measures for each trade appears to be an effective approach for displaying the data accurately. Thank you for your assistance.
- v-dineshya1 year agoCommunity Support
Hi Sumnima39 ,
If your issue is resolved. Please do let us know , if you have any further queries.
Regards,
Dinesh
- Sumnima391 year agoFrequent Visitor
Yes, It resolved.
Thank you