Forum Discussion

Anders_G's avatar
Anders_G
Icon for Helper I rankHelper I
4 years ago
Solved

Create new column (table) with unique values from two other columns.

Power Query : I want to create a new Table C with a column showing the unique values from two other columns in two different tables A & B. See example below.

 

I'm sure this is easy but I'm stuck with this one.

 

Thank you!

 

 

  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi,

    I solved it this way: Append queries as new-> remove duplicates

    let
    Source = Table.Combine({Table1, Table2}),
    #"Removed Duplicates" = Table.Distinct(Source)
    in
    #"Removed Duplicates"

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi,

    I solved it this way: Append queries as new-> remove duplicates

    let
    Source = Table.Combine({Table1, Table2}),
    #"Removed Duplicates" = Table.Distinct(Source)
    in
    #"Removed Duplicates"