Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Filtering Long Table Based on Another Table

  Hi Guys, how is everything? I need some help here please. I need to filter a column in a table, long one actually (the first image is a sample of it), to keep only the mentioned names in a column...
  • Anonymous's avatar
    Anonymous
    4 years ago

    On your first table, in the formula bar, type:

     

    = Table.SelectRows(Source, each List.Contains(List.Distinct(Table2[Name]), [Name]))

     

    --Nate