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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
rcalvo
Frequent Visitor

Lookup one field, return multiple matches

Hi All,

 

 

I have two tables, one (Table A) with unique ID and another one (Table B) with non unique values that refere to Table A.

 

Table A
ID
001
002
003
004
005
006
007

 

Table B 
ID(Table A)
001Pro
001Live
002Pro
003Pro
004Live
005Live
006Live
006Pro
007Pro

 

Here is what I am trying to achieve: I want to know which ID's  from Table A are missing either "Pro" or "Live" in Table B. If They are complete then "Complete"

 

 

Table A 
ID Missing
001Complete
002Live
003Live
004Pro
005Pro
006Complete
007Live

 

Your help is much appreciated!

 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @rcalvo,

In Query Editor, firstly click on your Table A, then select “Merge Queries as New” to merge the two tables.
1.PNG2.PNG

Secondly, add custom column named “Status” in your merged table.

= Text.Combine([NewColumn][Status],", ")
3.PNG

Thirdly, add a custom column named “Missing” in your merged table and you will get expected result.

= if [Status]="Pro, Live" or [Status] ="Live, Pro" then "Complete"
else if [Status] ="Pro" then "Live" else "Pro"
4.PNG

Thanks,
Lydia Zhang

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @rcalvo,

In Query Editor, firstly click on your Table A, then select “Merge Queries as New” to merge the two tables.
1.PNG2.PNG

Secondly, add custom column named “Status” in your merged table.

= Text.Combine([NewColumn][Status],", ")
3.PNG

Thirdly, add a custom column named “Missing” in your merged table and you will get expected result.

= if [Status]="Pro, Live" or [Status] ="Live, Pro" then "Complete"
else if [Status] ="Pro" then "Live" else "Pro"
4.PNG

Thanks,
Lydia Zhang

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors