Forum Discussion
Anonymous
3 years agoNot applicable
Duplicating a New Column in Power Query
Hello, I am working on data set that is imported via Salesforce Objects into Power Query. On one of my queries I'll have a table that has a column for Department Owner. Then I'll create another ...
- 3 years ago
Hi Anonymous ,
According to your description, here's my solution. My sample data is as below.
Table :
User table:
Solution1:
Select the User column in User table, then click "Merge Queries"
Select User column in another table.
In the result column, expand Department column.
Solution2:
Add a custom column:
Table.SelectRows(#"Table", (x)=> x[User]=[User])[Department]{0}Both get correct result:
I attach my sample below for your reference.
Best regards,
Community Support Team_yanjiang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
RocketRod
3 years agoFrequent Visitor
Yes, can merge the tables to add the column into the new table, or write M code to do it if lookup logic is complex.