Forum Discussion
willayd
Advocate I
6 years agoTable visualization not showing measure from one table when linked to another table with no match
I have a model that links orders to deliveries. For the sake of sample data, we can reproduce this model using the following DAX table constructors: order = DATATABLE("order_number", INTEGER,...
AllisonKennedy
Community Champion
6 years agowillayd
This is due to the CROSS FILTER direction of your relationship.
When working with multiple tables, you cannot do a 'value' or 'summarization' on a column that is not on the many side of the relationship.
Do you have the order_quantity set to 'SUM'? Try clicking the down arrow next to order_quantity in the table and set it to 'don't summarize'
This should solve your problem.
Other way to achieve this if you want SUM, is to create a new calculated COLUMN in the delivery table:
Order_Quantity = RELATED(order[order_quantity])
Then use the Order_Quantity from the delivery table in your report.
This is due to the CROSS FILTER direction of your relationship.
When working with multiple tables, you cannot do a 'value' or 'summarization' on a column that is not on the many side of the relationship.
Do you have the order_quantity set to 'SUM'? Try clicking the down arrow next to order_quantity in the table and set it to 'don't summarize'
This should solve your problem.
Other way to achieve this if you want SUM, is to create a new calculated COLUMN in the delivery table:
Order_Quantity = RELATED(order[order_quantity])
Then use the Order_Quantity from the delivery table in your report.
- willayd6 years ago
Advocate I
Thanks AllisonKennedy ! Your first suggestion of removing the aggregation does work, though with the downside of removing the total. The second suggestion doesn't seem to work at all - any thoughts on what may be missing there?
- AllisonKennedy6 years ago
Community Champion
When you say the second suggestion doesn't work at all - how far did you get? Were you able to create the calculated column?- willayd6 years ago
Advocate I
Yep I was able to create it - it just produces the same results as shown in the original screenshot.