Forum Discussion
Identifying mismatches between two tables
- 2 years ago
Hi JemmaD ,
Although it is not that much clear if you have any slicer or not. but lets assume that you dont have any slicer and just want to find products that agreed but not sold. then you can write a measure as follows:
measure not_sold :=
var _agreed= values (product_agreed [GUID])
var _sold = values (product_sold [GUID])
return
countrows ( except (_agreed, _sold))
If this post helps, then I would appreciate a thumbs up ๐ and mark it as the solution to help the other members find it more quickly.
Hi JemmaD ,
Although it is not that much clear if you have any slicer or not. but lets assume that you dont have any slicer and just want to find products that agreed but not sold. then you can write a measure as follows:
measure not_sold :=
var _agreed= values (product_agreed [GUID])
var _sold = values (product_sold [GUID])
return
countrows ( except (_agreed, _sold))
If this post helps, then I would appreciate a thumbs up ๐ and mark it as the solution to help the other members find it more quickly.