Forum Discussion
Anders_G
Helper I
4 years agoCreate 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!
- Anonymous4 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
- AnonymousNot 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"