Forum Discussion
PowerBIUser9901
7 years agoAdvocate II
Combining tables IF
I need to create a table visual with both Table_1 and Table_2 data merged however If Order_ID is included in Table_1 and Table_2 then only include the Table_1 data. *Things to note both Table_1 a...
- 7 years ago
PowerBIUser9901 try this
Table_Combine = UNION ( DISTINCT( Table_1 ), DISTINCT( CALCULATETABLE( Table_2, EXCEPT( VALUES( Table_2[Order_Id] ), VALUES( Table_1[Order_Id] ) ) ) ) )
parry2k
7 years agoSuper User
PowerBIUser9901 now make sense, so red order even if they have different product id and customer id then one in table 1, you still don't want to include since that order already exists in table 1 regardess of different product and order. will get back on this soon.
parry2k
7 years agoSuper User
PowerBIUser9901 try this
Table_Combine =
UNION
(
DISTINCT( Table_1 ),
DISTINCT(
CALCULATETABLE(
Table_2, EXCEPT( VALUES( Table_2[Order_Id] ), VALUES( Table_1[Order_Id] ) )
)
)
)- PowerBIUser99017 years agoAdvocate II
parry2k That DAX formula you created does exactly what I was looking for. Thank you very much!