Please note javascript is required for full website functionality.

Blog

Power Query: Fuzzy Matching

5 June 2019

Welcome to our Power Query blog. Today, I am going heading off into Power BI for a feature I’d like to see more of in Excel Power Query.

Power Query is becoming more “fuzzy” – and that’s a good thing. When joining queries together, it’s not always helpful to require exact matches. Take the next table – this is the same data I looked at in Power Query: Exceptional Cases – and again, my problem is the way that my imaginary salespeople have entered the company names.

Here’s a Power BI Desktop screenshot:

The company names should look like this:

In my previous article, I cleaned up the contact table by using a translation table, but this time I am going to look at fuzzy matching. The translation table concept is not entirely redundant though, and I will come back to this later.

I dealt with merging tables in Power Query: Two (Queries) Become One. In Power Query (in Excel), the Merge dialog looks like this:

This type of merging won’t help me: it hasn’t linked any of the companies my salespeople have entered. However, in Power BI, the Merge dialog looks a little different:

I have fuzzy merge options! I will go through the other options later – first I just want to try it out.

I start with the default options, i.e. that ignores case and also ticks another box called ‘Match by combining text parts’. The information icon next to this option tells me it does things like combining ‘Micro soft’ into ‘Microsoft’ – so it’s basically ignoring spaces when comparing text. I am not setting the ‘Similarity threshold’, but it defaults to 0.80. More on this later. For now, I can see that two of my rows now have a match, so I will accept the defaults and see what has matched.

If I expand Company.1, I can see the company names that have matched:

The company names that have different cases and spaces have now matched. Next, I need to see whether I can adjust the ‘Similarity threshold’ to match my other company names.

The similarity threshold is 0.00 to match everything, and 1.00 to only allow exact matches. The default is 0.80, and this hasn’t matched two of my rows. I will try reducing it.

I try 0.5, and all of my rows are matched. I can click OK to check

With a Similarity threshold of 0.5, ‘Tentworld (mr. tent)’ is matched with ‘Tentworld (Mrs. Tent)’ and ‘Tentsrthem (DAVE)’ matches ‘Tentsrthem’.

I can play around with the threshold further:

I find that a value of 0.55 means that three of my rows match.

A threshold of 0.55 is enough to match ‘Tentworld (mr. tent)’ with ‘Tentworld (Mrs. Tent)’ but not ‘Tentsrthem (DAVE)’ with ‘Tentsrthem’. The statistical calculations behind this are beyond the scope of this blog!

The remaining options for fuzzy matching are ‘Maximum number of matches’, which can limit the number of rows returned that match the input row (useful in one to many joins), and the ability to specify a ‘Transformation table’. I used a similar idea in Power Query: Exceptional Cases, but in that case I needed to create a list of ‘from’ and ‘to’ values. In this example, I need a table of ‘from’ and ‘to’ values.

I am trying to link to a new table ‘More Companies’ which contains the head companies for my original company names. Even with fuzzy matching, these are difficult to match. I can set up a transformation table to link the head companies to the children.

The idea is to use some fuzzy matching so that Company of ‘Contacts’ matches From, and then using this table, translate to To so that Head Company matches.

I have played around with the threshold to get the matches, but I now have all contacts matching a Head Company.

When I expand, I can see that the Head Company appears for each row.

Although the fuzzy merge is not yet an option for the Merge dialog when using Power Query in Excel, there is a way to use it there too, which I will look at next time…

Come back next time for more ways to use Power Query!

Newsletter