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

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

Reply
krwalke
Frequent Visitor

Conditional Many to One Relationship Question

Hi Group,

 

I'm relatively new to Power BI, and am stuck on pulling just one specific value to return from a many to one relationship.  My data set below (Table A - Many side of the relationship) shows each JobID having multiple Milestones, but not necessarily every Milestone.  In a separate table (Table B - One side of the relationship) that the JobID is relationshipped with (Many to One), I'd like to show a true/false or some kind of output for only one specific Milestone - let's say 100.

 

So, if the JobID in Table A has a 100 Milestone, then True, else False.. for all JobIDs in Table B.

 

Table A:

krwalke_0-1668115405390.png

 

Hopefully this makes sense and thanks for the help!

1 ACCEPTED SOLUTION
Shaurya
Memorable Member
Memorable Member

Hi @krwalke,

 

Filter Table A first to create a new table that only has the IDs with a specific milestone.

 

Milestone IDs = FILTER('Table A','Table A'[Milestone]=100)

 

Then create a flag in Table B that shows true or false based on the fact whether that ID is present in the filtered table or not.

 

Flag = IF(ISBLANK(LOOKUPVALUE('Milestone IDs'[Job ID],'Milestone IDs'[Job ID],'Table B'[Job ID])), "False", "True")

 

Works for you? Mark this post as a solution if it does!
Check out this blog of mine: How to Export Telemetry Data from Azure IoT Central into Power BI

View solution in original post

1 REPLY 1
Shaurya
Memorable Member
Memorable Member

Hi @krwalke,

 

Filter Table A first to create a new table that only has the IDs with a specific milestone.

 

Milestone IDs = FILTER('Table A','Table A'[Milestone]=100)

 

Then create a flag in Table B that shows true or false based on the fact whether that ID is present in the filtered table or not.

 

Flag = IF(ISBLANK(LOOKUPVALUE('Milestone IDs'[Job ID],'Milestone IDs'[Job ID],'Table B'[Job ID])), "False", "True")

 

Works for you? Mark this post as a solution if it does!
Check out this blog of mine: How to Export Telemetry Data from Azure IoT Central into Power BI

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