Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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:
Hopefully this makes sense and thanks for the help!
Solved! Go to Solution.
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
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
67 | |
61 | |
52 | |
36 | |
35 |
User | Count |
---|---|
84 | |
74 | |
56 | |
45 | |
44 |