Forum Discussion

froxas's avatar
froxas
Helper II
6 years ago
Solved

check if value contains in another table

I have "clien's" table with client_id, and i have another table "invoices" where each invoice has client_id.   with power query I need to add in "client's" table column yes/no  to check if every cl...
  • artemus's avatar
    6 years ago

    Add a custom column with:

    = List.Contains(InvoiceTable[client_id], [client_id])

    Where InvoiceTable  is the query name of your invoice table.