Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I have 2 different tables
1st Table : 14000 names
2 nd table : 25000 names
I would like to add a column to 2nd Table : True if same value as 1st table , False for missing value
Thank you in advance.
Solved! Go to Solution.
Hi @Anonymous,
Think this function is what you're after: https://learn.microsoft.com/en-us/dax/lookupvalue-function-dax
Hi,
I do agree with @BITomS if your absolutely need:want to do it in DAX.
My solution would be using a merge in Power Query between both tables.
Let us know if you need more details
Hi @Anonymous
many options
Table2[Name] IN VALUES ( Table1[Name] )
or
CONTAINS ( Table1, Table1[Name], Table2[Name] )
or
NOT ISEMPTY ( FILTER ( Table1, Table1[Name] = Table2[Name] ) )
Hi @Anonymous
many options
Table2[Name] IN VALUES ( Table1[Name] )
or
CONTAINS ( Table1, Table1[Name], Table2[Name] )
or
NOT ISEMPTY ( FILTER ( Table1, Table1[Name] = Table2[Name] ) )
Hi,
I do agree with @BITomS if your absolutely need:want to do it in DAX.
My solution would be using a merge in Power Query between both tables.
Let us know if you need more details
Hi @Anonymous,
Think this function is what you're after: https://learn.microsoft.com/en-us/dax/lookupvalue-function-dax
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |