Forum Discussion

DaveCor's avatar
DaveCor
Helper I
6 years ago
Solved

Remove duplicates but consolidate data from other columns

Hi folks,    First time poster and recent convert to Power BI but using Excel for many years.    I have a table that I want to later merge with another table but first I need to do some work to i...
  • artemus's avatar
    6 years ago

     

    Table.Group(PreviousStep, "ID", {{"ADR",  each List.Select([ADR], each _ <> "" and _ <> null){0}?}, {"ADV", each List.Select([ADV], each _ <> "" and _ <> null){0}?}})

     

     

    Where PreviousStep is your previous step in the query.