Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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 |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |