In order to find the rows of table A that are NOT in Table B, one can use M in a query.
e.g., Table.NestedJoin(Employee,{"EmpID"},#"Employee Salary",{"EmployeeId"},"Employee Salary",JoinKind.LeftAnti)
How can it be done in DAX, perhaps using GENERATE. GENERATE or GENERATEALL makes it easy to...