Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello Fellow Power BI friends,
I am trying to join 2 tables together. The data is so large that I know I have duplicate account numbers and cases. I created an account number table to join the sales and case tables. I made sure to filter out any duplicate or blank tables. The issue is, that I am trying to create a table report that uses the account number from the account table and then pull data from the sales and case tables. I can pull data from one table or the other but not both. I was looking online an found Union code “Test Union = FILTER(DISTINCT(UNION(DISTINCT(CASE[ACCT#]),DISTINCT('Sales’ [ACCT]))),NOT(ISBLANK(CASE[ACCT#])))”. I added the table and joined it to the Sales and Case table (1:Many – 1 way) but I am still unable to create a table report. Is there something wrong with the way I setup my table and connections? I can only do (1:Many – 2 way) for only 1 of the table connections.
Sales Table from Sales System
Case Table from SalesForce
Account Number Table
Solved! Go to Solution.
Hi @Jorgast,
Dax function not support to merge different tables who has different column amounts/name.
You need to select column and modify column name to keep them has same structure, then you can union these modify tables.
Regards,
Xiaoxin Sheng
Hi @Jorgast,
I check you table structure and found only two column in these tables can use to compare.(account number and sales agent)
You can use variable to store calculate table with except function with select column function to get distinct records, then merge these to one.
Sample table:
Result = VAR sale_distint = CALCULATETABLE ( 'Sales', EXCEPT ( SELECTCOLUMNS ( 'Sales', "Account number", [Account Number], "Name of Sales agent", [Name of Sales agent] ), SELECTCOLUMNS ( 'Case', "Account Number", [Account Number], "Name of Sales agent", [Sales agent] ) ) ) VAR case_distint = CALCULATETABLE ( 'Case', EXCEPT ( SELECTCOLUMNS ( 'Case', "Account Number", [Account Number], "Name of Sales agent", [Sales agent] ), SELECTCOLUMNS ( 'Sales', "Account Number", [Account Number], "Name of Sales agent", [Name of Sales agent] ) ) ) RETURN UNION ( SELECTCOLUMNS ( sale_distint, "Account Number", [Account Number], "Name of Sales agent", [Sales agent] ), SELECTCOLUMNS ( case_distint, "Account Number", [Account Number], "Name of Sales agent", [Sales agent] ) )
Regards,
Xiaoxin Sheng
Hi @Jorgast,
Dax function not support to merge different tables who has different column amounts/name.
You need to select column and modify column name to keep them has same structure, then you can union these modify tables.
Regards,
Xiaoxin Sheng
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
78 | |
52 | |
38 | |
35 |
User | Count |
---|---|
93 | |
73 | |
55 | |
52 | |
46 |