Forum Discussion

newbie_2023's avatar
newbie_2023
New Member
2 years ago
Solved

Advanced Filter | Power Query

I am trying to find an efficient way to filter a data set using powerquery.  I need to filter out all rows representing a company only when there is no data in another column. But I need to retain al...
  • wdx223_Daniel's avatar
    2 years ago

    NewStep=Table.Combine(Table.Group(YourTable,"Company Name",{"n",each if List.NonNullCount([Descr])=0 the #table(0,{}) else _)})[n])