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
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
v-yuezhe-msft
Employee
Employee

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

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yuezhe-msft
Employee
Employee

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

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.