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.
Hello All,
I have a table that has multiple ID in one table. For example, one table will have the ID multiple times with different data.
ID | Data_1 | Data_2 |
1 | ||
1 | ||
2 | ||
2 | ||
2 |
The other table is much smaller and only has the ID once.
ID | Data_3 | Data_4 |
1 | ||
2 | ||
3 | ||
4 | ||
5 |
I would just like to return "Yes" if it does. "No" if it doesn't. I would like to do this with a calculated column so I have the ability to filter.
Thank you in advance!
Hi @eryan123
The @wdx223_Daniel can cover your request with the relation.
You can also create a calculated column with this code in Unique Table:
validate =
Var _Comm = LOOKUPVALUE('multiple ID'[ID],'multiple ID'[ID],'Unique ID'[ID])
return
if(ISBLANK(_Comm),"No","Yes")
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos✌️!!
create a one to many relationship by ID
NewColumn=if(countrows(relatedtable(table1)),1,0)
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 |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |