Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello Everyone,
I have 3 tables , all of them have 98 rows and 6 columns but only 2 of the column datas are different.
I want to find the difference in that 2 columns and plot a visual to see the difference.
Also I want to create relationships between these tables (created from 3 csv files).
can someone please help????
Solved! Go to Solution.
Hi @Enkei ,
If the other 4 columns are the same, you can also create a column to combine the 4 columns and create relationships based on the created columns.
Or use merge like so: Relationship in Power BI with Multiple Columns - RADACAD.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Enkei ,
If the other 4 columns are the same, you can also create a column to combine the 4 columns and create relationships based on the created columns.
Or use merge like so: Relationship in Power BI with Multiple Columns - RADACAD.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello @Enkei ,
Can you please clarify your requirement in detail?
If the data structure is same, can't you consider appending these tables together and removng duplicates if it solves your purpose?
For your query to get the difference in two tables, here is the generic Power Query code:
let
addedT1_= List.Difference(Table1[ID], Table2[ID]),
addedT2_= List.Difference(Table2[ID], Table1[ID]),
TChanges_ = Table.AddColumn(Table.SelectRows(Table.SelectRows(Table2, each not List.Contains(addedT2_, [ID])), each _ <> Table1{[ID = [ID]]}), "Change description", each "Change in table 2 compared to table 1", type text)
in
TChanges_
i
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.