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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
eryan123
Frequent Visitor

How do I validate that an ID exists in another table?

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. 

IDData_1Data_2
1  
1  
2  
2  
2  

 

The other table is much smaller and only has the ID once. 

IDData_3Data_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! 

2 REPLIES 2
VahidDM
Super User
Super User

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:

VahidDM_0-1631246481370.png

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos✌️!!

 

wdx223_Daniel
Super User
Super User

create a one to many relationship by ID

NewColumn=if(countrows(relatedtable(table1)),1,0)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.