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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
dcr007
Frequent Visitor

Look uo for matching fields from two different data sets

For each 'cid' in Table 1 , I want to look up for a match in table 2  against the 'companyid,'  . Table 3 should contain all the matches for the companyid field from Table2 .

 

Table1

dc , cid, name 

--------------------

dc1, DC9098, xyc

dc2, DC9081, xyc

dc3, DC9041, xyc

 

Table2 

id , companyid, client, date 

-----------------------------------

1, DC9098, SPA,10/12/20

2, DC9081,APPL,30/31/19

3, DC9081,GOOG,30/31/19

4, DC9081,RAS,10/31/19

5, DC9031,RAS,10/31/19

 

Table 3 

id , companyid, client, date 

-----------------------------------

1, DC9098, SPA,10/12/20

2, DC9081,APPL,30/31/19

3, DC9081,GOOG,30/31/19

4, DC9081,RAS,10/31/19

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@dcr007 Maybe:

Table 3 =
  VAR __cids = ALL('Table1'[cid])
RETURN
  FILTER(ALL('Table2'),[companyid] IN __cids)

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@dcr007 Maybe:

Table 3 =
  VAR __cids = ALL('Table1'[cid])
RETURN
  FILTER(ALL('Table2'),[companyid] IN __cids)

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hey @Greg_Deckler Thanks that helped ! Also I figured out the creating a view using merge queries to be effecient in terms of time space complexity. Like so :

 

= Table.NestedJoin(Table2, {"companyId"}, Table1, {"companyId"}, "Table1", JoinKind.Inner)

 

src: https://docs.microsoft.com/en-us/power-query/merge-queries-overview

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.