Forum Discussion

jerryr125's avatar
jerryr125
Helper IV
1 year ago
Solved

Table value comparsion

Hi - I am looking to do the following in my Power Query workflow. I would like create a table of values not found comparing two tables.  Example:   Table 1 MS-ID AC-ID 1 500 1 600 2...
  • p45cal's avatar
    p45cal
    1 year ago

    Yes:

    = Table.NestedJoin(Table1, {"AC-ID", "MS-ID"}, Table2, {"AC-ID", "MS-ID"}, "DeleteThis", JoinKind.LeftAnti)