Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
JSR
Helper II
Helper II

Create new table from multiple tables

Hi,

 

Having 4 similar tables as:

JSR_0-1718271968756.png

 

What can I do to have a new table with Only unique Owners names?

JSR_0-1718272289853.png

 

I'm creating it like this, but it doesnt show all users.

 

let
    Source = Table.NestedJoin(email, {"owneridname"}, appointment, {"owneridname"}, "appointment", JoinKind.FullOuter),
    #"Merged Queries" = Table.NestedJoin(Source, {"owneridname"}, phonecall, {"owneridname"}, "phonecall", JoinKind.FullOuter),
    #"Removed Other Columns" = Table.SelectColumns(#"Merged Queries",{"owneridname"}),
    #"Removed Duplicates" = Table.Distinct(#"Removed Other Columns"),
    #"Renamed Columns" = Table.RenameColumns(#"Removed Duplicates",{{"owneridname", "Name"}}),
    #"Filtered Rows" = Table.SelectRows(#"Renamed Columns", each ([Name] <> null and [Name] <> "Power Platform Admin Admin"))
in
    #"Filtered Rows"

 

 

 

1 ACCEPTED SOLUTION
ManuelBolz
Responsive Resident
Responsive Resident

Hello

If my post helped you, please give me a 👍kudos and mark this post with Accept as Solution.

Do you mean that?

let
    Source = Table.Combine({Email[[Owner]], Appointment[[Owner]], Lead[[Owner]], Opportunity[[Owner]]}),
    Duplicates = Table.Distinct(Source)
in
    Duplicates

ManuelBolz_1-1718282499181.png


Best regards from Germany
Manuel Bolz


🟦Follow me on LinkedIn
🟨How to Get Your Question Answered Quickly
🟩Fabric Community Conference
🟪My Solutions on Github

View solution in original post

2 REPLIES 2
ManuelBolz
Responsive Resident
Responsive Resident

Hello

If my post helped you, please give me a 👍kudos and mark this post with Accept as Solution.

Do you mean that?

let
    Source = Table.Combine({Email[[Owner]], Appointment[[Owner]], Lead[[Owner]], Opportunity[[Owner]]}),
    Duplicates = Table.Distinct(Source)
in
    Duplicates

ManuelBolz_1-1718282499181.png


Best regards from Germany
Manuel Bolz


🟦Follow me on LinkedIn
🟨How to Get Your Question Answered Quickly
🟩Fabric Community Conference
🟪My Solutions on Github

thanks, i was overcomplicating 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.