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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
MK97
Frequent Visitor

Appending two data sources

Hello,

 

I need to append two data sources into one. The problem is that I need to get all data from first data source and only get that data from the second data source that does not exist in the first data source.

 

Data sources have different primary keys i.e.:

first data source: 00001#D, 00002#D, 00003#D

second data source: 00001#E, 00002#E, 00004#E

In the appended table i need to have these primary keys: 00001#D, 00002#D, 00003#D, 00004#E

 

I need to use similar function like in SQL - Where Exists

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @MK97 

 

First append two tables. Ensure the first data source table comes ahead in Table.Combine. Then extract id numbers before "#" into a new column. Select this new column and remove duplicates.

21100505.jpg

let
    Source = Table.Combine({#"Table A", #"Table B"}),
    #"Inserted Text Before Delimiter" = Table.AddColumn(Source, "Text Before Delimiter", each Text.BeforeDelimiter([ID], "#"), type text),
    #"Removed Duplicates" = Table.Distinct(#"Inserted Text Before Delimiter", {"Text Before Delimiter"})
in
    #"Removed Duplicates"

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @MK97 

 

First append two tables. Ensure the first data source table comes ahead in Table.Combine. Then extract id numbers before "#" into a new column. Select this new column and remove duplicates.

21100505.jpg

let
    Source = Table.Combine({#"Table A", #"Table B"}),
    #"Inserted Text Before Delimiter" = Table.AddColumn(Source, "Text Before Delimiter", each Text.BeforeDelimiter([ID], "#"), type text),
    #"Removed Duplicates" = Table.Distinct(#"Inserted Text Before Delimiter", {"Text Before Delimiter"})
in
    #"Removed Duplicates"

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

watkinnc
Super User
Super User

You can you the Merge function in the GUI, and choose Left Anti as the Join Kind. Then append this step to the step right before the join. 

 

--Nate


I’m usually answering from my phone, which means the results are visualized only in my mind. You’ll need to use my answer to know that it works—but it will work!!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors