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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
Is this possible?
If the value from first column is missing in the second column the show value from column 1.
I have 2 tables
Table 1 Serial number |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
Table 2 Serial number |
11 |
12 |
14 |
15 |
16 |
Result that I want.
New Column |
13 |
17 |
Solved! Go to Solution.
sample data :
output
measure
Measure 13 =
var ds =
EXCEPT(
values(tbl_1[col1]),values(tbl_2[col2])
)
return
CALCULATE(
COUNTROWS(tbl_1),
KEEPFILTERS(ds)
)
if you dont want to use a measure . you can simply refer to the below method :
output
Measure 13 =
var ds =
EXCEPT(
values(tbl_1[col1]),values(tbl_2[col2])
)
var c =
CALCULATE(
COUNTROWS(tbl_1),
KEEPFILTERS(ds)
)
return if(ISBLANK(c), 0,1)
let me know if it works for you .
If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution ✅
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠
sample data :
output
measure
Measure 13 =
var ds =
EXCEPT(
values(tbl_1[col1]),values(tbl_2[col2])
)
return
CALCULATE(
COUNTROWS(tbl_1),
KEEPFILTERS(ds)
)
if you dont want to use a measure . you can simply refer to the below method :
output
Measure 13 =
var ds =
EXCEPT(
values(tbl_1[col1]),values(tbl_2[col2])
)
var c =
CALCULATE(
COUNTROWS(tbl_1),
KEEPFILTERS(ds)
)
return if(ISBLANK(c), 0,1)
let me know if it works for you .
If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution ✅
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠
Hi @TcT85
You can achieve the goal with EXCEPT function .
Please refer to the linked discussion:
https://community.fabric.microsoft.com/t5/Desktop/List-rows-that-are-missing-in-another-table/m-p/27...
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.