How can Fuzzy Matching be performed in Power BI with an example?

Fuzzy matching in Power BI refers to the process of identifying and linking similar or related data points from different data sources. This can be achieved by using the “Fuzzy Matching” feature in the “Merge Queries” function. For example, if we have a sales data table with customer names and another table with customer details, we can use fuzzy matching to link the two tables by finding similar customer names and merging them into a single table. This can help in creating a more comprehensive and accurate analysis of sales data by incorporating additional customer information.


Often you may want to join together two tables in Power BI based on imperfectly matching strings. This is referred to as fuzzy matching.

The easiest way to perform fuzzy matching is to use the Merge Queries function in the Power Query Editor.

The following example shows how to do so in practice.

Example: How to Perform Fuzzy Matching in Power BI

Suppose we have the following table in Power BI named data1 that contains information about the team name and points scored for various basketball players:

And suppose that we have another table named data2 that contains information about the team name and assists for various basketball players:

Suppose that we would like to perform an inner join between the two tables in which we use a “fuzzy match” on the strings in the Team columns of each table.

To do so, click the Home tab along the top ribbon, then click the Transform data icon:

This will bring up the Power Query Editor.

Next, click the Merge Queries icon in the Combine group of the Home tab.

Then click Merge Queries as New from the dropdown menu:

In the new window that appears, choose data1 as the first table, choose data2 as the second table, and choose Inner as the Join Kind.

Then check the box next to Use fuzzy matching to perform the merge:

You can also specify the Similarity threshold value if you’d like, which ranges between 0 and 1.

A value of 0 would match any strings and a value of 1 would only match strings that are exactly the same. The default value is 0.8.

Once you click OK, the inner join will be performed based on fuzzy matches in the Team columns of the two tables:

Next, click the left and right arrows on the header of the data2 column. Then check the box next to Assists to indicate that this column should be the only one included from data2 in the final merged table:

Once you click OK, the Assists column will be shown from the data2 table:

Once you exit out of the Power Query Editor, a message box will appear that asks if you’d like to apply your changes.

Click Yes.

You will then be able to see the new table named Merge1 in the Table view:

Notice that this final merged table was able to match each string in the Team column of data1 with a string in the Team column of data2 based on fuzzy matching.

Note: If you’d like, you can right click on the header named data2.Assists and rename the column to just Assists.

Additional Resources

The following tutorials explain how to perform other common tasks in Power BI:

How to Add Index Column to Table in Power BI

x