Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
mukeshmutreja
Microsoft Employee
Microsoft Employee

Multiple relations

How to create multiple column relations between two tables.

 

For Ex:

 

I have two tables:

 

1. Product Group table

 

CompanyProduct GroupProduct
APG1ITM1
APG1ITM2
BPG2ITM1

2. Sales Table

 

CompanyProductSales Amount
AITM1100
AITM2200
BITM1

300

 

Requirement is to fetch the Product group from table 1 based upon company and product values from table 2.

 

1 ACCEPTED SOLUTION
itayrom
Resolver II
Resolver II

In Power BI's model, a relationship can be created between two tables only by connecting a single column from each one.

Therefore, what you should do is add a key column to each of the tables that concatenates the Company and Product columns values for each row. You can do this either via a DAX expression or in Power Query.

 

For example, you can create a calculated column in each table using the following DAX expressions-

In the Product Group table-

Key = 'Product Group'[Company] & "|" & 'Product Group'[Product]

 

In the Sales table-

ProductGroupFK = 'Sales'[Company] & "|" & 'Sales'[Product]

 

 

And then create a relationship between them.

View solution in original post

1 REPLY 1
itayrom
Resolver II
Resolver II

In Power BI's model, a relationship can be created between two tables only by connecting a single column from each one.

Therefore, what you should do is add a key column to each of the tables that concatenates the Company and Product columns values for each row. You can do this either via a DAX expression or in Power Query.

 

For example, you can create a calculated column in each table using the following DAX expressions-

In the Product Group table-

Key = 'Product Group'[Company] & "|" & 'Product Group'[Product]

 

In the Sales table-

ProductGroupFK = 'Sales'[Company] & "|" & 'Sales'[Product]

 

 

And then create a relationship between them.

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.