Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have 2 tables "similar" to below
Table 1
| ID | Company Code | Country | City |
| 1 | 50 | Blah | Blah |
| 2 | 60 | Blah | Blah |
| 3 | 50 | Blah | Blah |
| 4 | 31 | Blah | Blah |
Table 2
| ID | Company Code | Company Name | Country | City |
| 1 | 50 | Company 1 | Blah | Blah |
| 2 | 60 | Company 2 | Blah | Blah |
| 3 | 50 | Company 1 | Blah | Blah |
| 4 | 30 | Company 3 | Blah | Blah |
How can I get the "Company Name" column in "Table 2" to display in "Table 1" so it puts the correct "Company Name" alongside the associated"Company Code" and if there is no corrosponding "Company Code" in "Table 2", then leave "Blank". Similar to below...
Table 1
| ID | Company Code | Company Name | Country | City |
| 1 | 50 | Company 1 | Blah | Blah |
| 2 | 60 | Company 2 | Blah | Blah |
| 3 | 50 | Company 1 | Blah | Blah |
| 4 | 31 | Blah | Blah |
I am unsure the best approach to do this. Thanks in advance.
Solved! Go to Solution.
Hi @StuartSmith
Create an active relationship between Table 1 and Table 2 based on a common column like ID or Company Code.
Now go to your Table 1, add a new column and use below DAX;
CompanyName=RELATED(Table2[Company Name])
Thanks,
Sanket.
If this post helps, then mark it as "Accept as Solution" and give it a thumbs up.
Hi, how are u?
First of all you should create a relation between these tables in here:
You just need to drag "Company" from table1 to "Company" from table2.
After, if you move the information from different table in the same chart, the information will match.
Regards!
Hi @StuartSmith
Create an active relationship between Table 1 and Table 2 based on a common column like ID or Company Code.
Now go to your Table 1, add a new column and use below DAX;
CompanyName=RELATED(Table2[Company Name])
Thanks,
Sanket.
If this post helps, then mark it as "Accept as Solution" and give it a thumbs up.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 55 | |
| 41 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 97 | |
| 80 | |
| 35 | |
| 29 | |
| 25 |