Forum Discussion
froxas
Helper II
6 years agocheck 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...
- 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.
PradeepDive
Helper II
4 years agoDid you try merge query