Forum Discussion
Anonymous
4 years agoNot 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: CUSTOMER REGION FACTORY STANDARD LEAD TIM...
- 4 years ago
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])
ryan_mayu
Super User
4 years agoAnonymous
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])
- Anonymous4 years agoNot applicable
Thanks for this! I actually ended up merging these two ables. Works the same.
- ryan_mayu4 years ago
Super User
you are welcome