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
jonclay
Helper IV
Helper IV

Looking up a value from another table and showing as "Yes" if present

Hi all
I'm sure there's a relatively simple answer to this, but I can't think of it for the life of me!
My scenario is that I have two tables - one called Contacts and one called Preferences. Both tables contain the SerialID field, and the Preferences table also contains a Code field. Each SeriaIID can have upto 8 different Codes (A-H), so the SerialID could appear upto 8 times in the Preferences table e.g.

Contacts table

SerialID = 1

SerialID = 2

SerialID = 3

 

Preferences table

SerialID = 1 / Code = A

SerialID = 1 / Code = F

SerialID = 1 / Code = G

SerialID = 2 / Code = B

SerialID = 3 / Code = H

 

...and so on.

What I'd like to achieve is a new Column appearing on the Contact table visual within Power BI showing "Yes" if the SerialID and relevant Code appears in the Preferences table.

 

So, the Contact visual would look something like this:

 

jonclay_0-1654598102736.png

 

Any help that you could provide me with would be much appreciated.

Many thanks
Jon

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @jonclay 

1. Create a 1-to-Many relationship between Contacts[SerialID] and Preferences[SerialID]

2. Place Contacts[SerialID] in the rows of a matrix visual

3.  Place Preferences[Code] in the columns of the matrix visual

4. Place this measure in values of the visual

Measure = 
VAR aux_ = COUNT( Preferences[Code] )
RETURN
IF(aux_ >0, "Yes")

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

View solution in original post

3 REPLIES 3
AlB
Super User
Super User

Hi @jonclay 

1. Create a 1-to-Many relationship between Contacts[SerialID] and Preferences[SerialID]

2. Place Contacts[SerialID] in the rows of a matrix visual

3.  Place Preferences[Code] in the columns of the matrix visual

4. Place this measure in values of the visual

Measure = 
VAR aux_ = COUNT( Preferences[Code] )
RETURN
IF(aux_ >0, "Yes")

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Thank you SO much, that works perfectly 🙂

tamerj1
Super User
Super User

Hi @jonclay 

Please try measure

Check =
IF ( NOT ISEMPTY ( 'Preferences' ), "Yes" )

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.