Working in Power BI -- pretty straight forward, looking to do the exact opposite of the formula below:
newtable = CALCULATETABLE(
table1, FILTER(
table2, table2[ID]
)
)
Right now this is filtering 675 of 4423 rows in Table 1 that were found in Table 2. I want it to do the exact opposite: 3748 of 4423 rows in Table 1 NOT found in Table 2.
Cheers