Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi, I have been struggling with this for a few days.
Table 1 Table 1
Name Name
abc123 hhh223
bty465 xyz543
hhh223 gfh891
bty876 tyu765
gfh891 ljk723
=========================
The goal is to display the values that are in 'Table 1'[Name] that do NOT exist in 'Table 2'[Name].
I keep getting errors when attempting to do what others have done for similar issues. The errors tell me that functions like 'CALCULATE' don't exist.
Thanks in advance.
Solved! Go to Solution.
Hi, @Anonymous
Please check the link down below and the dax measure.
In Table1 NotIn Table2 =
VAR newtable =
EXCEPT ( VALUES ( Table1[Name] ), VALUES ( Table2[Name] ) )
RETURN
CONCATENATEX ( newtable, Table1[Name], ", " )

https://www.dropbox.com/s/kw68ijsh49nosyc/needshelp.pbix?dl=0
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Hi, @Anonymous
Please check the link down below and the dax measure.
In Table1 NotIn Table2 =
VAR newtable =
EXCEPT ( VALUES ( Table1[Name] ), VALUES ( Table2[Name] ) )
RETURN
CONCATENATEX ( newtable, Table1[Name], ", " )

https://www.dropbox.com/s/kw68ijsh49nosyc/needshelp.pbix?dl=0
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
This is exactly what I needed! However, how do I populate this into a new column? there will eventually be thousands of entries in this specific report. Thank you!
Hi, @Anonymous
please try the below for the calculated column for Table1.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
even as a new column in Table 1, where the column contains a TRUE/FALSE or a YES/NO will work with a slicer
Hi @Anonymous ,
Check the posts below that present several option for doing this, the last one is my personal approach making an adaptation of the 2 previous posts:
https://dax.tips/2019/07/05/dax-pivot-text-into-a-list-of-words/
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português@Anonymous , Create this measure and plot with table1[name] in a visual
Calculate(count(Table1[Name]) , filter(Table1, not(Table1[Name] in allselected(table2[name]))))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.