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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
arzukari
Frequent Visitor

Merging two tables with similar values

Hello,

 

I'm using Tabular 1400 for the data model.

 

I'm trying to merge two tables on values that do not 100% match. One table has a segment of the string from that other table I'm trying to merge.

I tried using fuzzy but we're talking over 100 million rows, not sure if it's the best for performance.

 

The goal is to normalize values in the main table by finding key substring within those values. I hope this makes sense.

1 REPLY 1
lbendlin
Super User
Super User

Use Table.AddColumn with a custom columngenerator function. It's not lightning fast but has acceptable performance.

 

https://docs.microsoft.com/en-us/powerquery-m/table-addcolumn

 

Here is the general structure

let

    Source = Table.AddColumn(Table, "NewColumn",

        (parameter) => function

    ),…

 

and here is an example for a fuzzy merge.

 

let

    Source = Table.AddColumn(Assignments, "Match",

        (Earlier) =>

                Table.SelectRows(#"Keys",

                        each (Earlier[LocID]="*" or Earlier[LocID]=[LocID])

                             and (Earlier[PSA]="*" or Earlier[PSA]=[PSA])

                             and (Earlier[ST ID]="*" or Earlier[ST ID]=[ST ID])

                )

    ),

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors