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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

How to join two tables with multiple common fields but no unique identifier

Hi, I'm still quite new to Power BI especially with the modeling part. 

 

I'm trying to join a table called LeadTimeGrid with the following columns:

CUSTOMERREGIONFACTORYSTANDARD LEAD TIME
AppleAsiaA10
AppleAfricaB8
AppleEuropeC8
BoyEuropeC5
BoyAsiaA7
BoyNorth AmericaD7
CatNorth AmericaE3

 

with the main FactTable:

CUSTOMERREGIONCOUNTRYFACTORYACTUAL LEAD TIME
AppleAsiaChinaA15
CatNorth AmericaUSAE25
BoyEuropeFranceC30
AppleEuropeItalyC2

 

Anyway I can create a new table or visualization that has the following data fields:

CUSTOMERREGIONCOUNTRYFACTORYACTUAL LEAD TIMESTANDARD LEAD TIME
AppleAsiaChinaA1510
CatNorth AmericaUSAE253
BoyEuropeFranceC305
AppleEuropeItalyC28

 

None of the values are unique, and I'm not sure if I'm supposed to create a many-to-many relationship with the different fields. 

Any help?

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Anonymous 

you can just create a column

Column = maxx(FILTER(LeadTimeGrid,'Fact'[CUSTOMER]=LeadTimeGrid[CUSTOMER]&&'Fact'[REGION]=LeadTimeGrid[REGION]&&'Fact'[FACTORY]=LeadTimeGrid[FACTORY]),LeadTimeGrid[STANDARD LEAD TIME])

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@Anonymous 

you can just create a column

Column = maxx(FILTER(LeadTimeGrid,'Fact'[CUSTOMER]=LeadTimeGrid[CUSTOMER]&&'Fact'[REGION]=LeadTimeGrid[REGION]&&'Fact'[FACTORY]=LeadTimeGrid[FACTORY]),LeadTimeGrid[STANDARD LEAD TIME])

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Anonymous
Not applicable

Thanks for this! I actually ended up merging these two ables. Works the same.

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors