Forum Discussion
froxas
6 years agoHelper II
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...
- 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.
Anonymous
4 years agoNot applicable
Agreed, I tried this with ~150k rows, and it's unusable. Very good for small datasets though
Anonymous
4 years agoNot applicable
HowardLJ - did you find a workaround for large datasets?