Table.FuzzyJoin is a Power Query M function that joins rows of two tables based on fuzzy matching of the values of key columns. The function returns a table with the rows from both tables combined based on fuzzy matching criteria.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
Table.FuzzyJoin(
table1 as table,
key1 as any,
table2 as table,
key2 as any,
optional joinKind as nullable number,
optional joinOptions as nullable record,
) as table
Argument | Attribute | Description |
---|---|---|
table1 | The base table for the join. | |
key1 | One or multiple keys to perform the join on. For a single key, you can provide a text value, whereas for multiple you can specify the column names within a list. | |
table2 | The second table involved in the join. | |
key2 | One or multiple keys to perform the join on. For a single key, you can provide a text value, whereas for multiple you can specify the column names within a list. | |
joinKind | optional | Join Types indicate how to join the tables. Options are JoinKind.LeftOuter, JoinKind.LeftAnti, JoinKind.Inner, JoinKind.FullOuter, JoinKind.RightOuter and JoinKind.RightAnti. Defaults to Left Outer Join if unspecified. |
joinOptions | optional | Optionally you can specify an options record to change how to compare the key columns. Details are specified below. |
Description
Table.FuzzyJoin joins two tables by matching rows based on the similarity of key column values, rather than exact matches. It returns a combined table where rows are joined based on fuzzy matching criteria, which evaluates the likeness of text. The function supports various join types like inner, left outer, and full outer joins. It also allows customization through options like case sensitivity, space ignoring, and setting a similarity threshold. This function is particularly useful in scenarios where data matching requires flexibility beyond exact text equality, such as in data cleaning or integration tasks.
An optional set of joinOptions
may be included to specify how to compare the key columns. Options include:
ConcurrentRequests
: A number between 1 and 8 that specifies the number of parallel threads to use for fuzzy matching. The default value is 1.Culture
: Allows matching records based on culture-specific rules. It can be any valid culture name. For example, a Culture option of “ja-JP” matches records based on the Japanese culture. The default value is “”, which matches based on the Invariant English culture.IgnoreCase
: A logical (true/false) value that allows case-insensitive key matching. For example, when true, “Grapes” is matched with “grapes”. The default value is true.IgnoreSpace
: A logical (true/false) value that allows combining of text parts in order to find matches. For example, when true, “Gra pes” is matched with “Grapes”. The default value is true.NumberOfMatches
: A whole number that specifies the maximum number of matching rows that can be returned for every input row. For example, a value of 1 will return at most one matching row for each input row. If this option is not provided, all matching rows are returned.SimilarityColumnName
: A name for the column that shows the similarity between an input value and the representative value for that input. The default value is null, in which case a new column for similarities will not be added.Threshold
: A number between 0.00 and 1.00 that specifies the similarity score at which two values will be matched. For example, “Grapes” and “Graes” (missing the “p”) are matched only if this option is set to less than 0.90. A threshold of 1.00 only allows exact matches. (Note that a fuzzy “exact match” might ignore differences like casing, word order, and punctuation.) The default value is 0.80.TransformationTable
: A table that allows matching records based on custom value mappings. It should contain “From” and “To” columns. For example, “Grapes” is matched with “Raisins” if a transformation table is provided with the “From” column containing “Grapes” and the “To” column containing “Raisins”. Note that the transformation will be applied to all occurrences of the text in the transformation table. With the above transformation table, “Grapes are sweet” will also be matched with “Raisins are sweet”.
Examples
Left inner fuzzy join of two tables based on [FirstName]
Table.FuzzyJoin(
Table.FromRecords(
{
[CustomerID = 1, FirstName1 = "Bob", Phone = "555-1234"],
[CustomerID = 2, FirstName1 = "Robert", Phone = "555-4567"]
},
type table [CustomerID = nullable number, FirstName1 = nullable text, Phone = nullable text]
),
{"FirstName1"},
Table.FromRecords(
{
[CustomerStateID = 1, FirstName2 = "Bob", State = "TX"],
[CustomerStateID = 2, FirstName2 = "bOB", State = "CA"]
},
type table [CustomerStateID = nullable number, FirstName2 = nullable text, State = nullable text]
),
{"FirstName2"},
JoinKind.LeftOuter,
[IgnoreCase = true, IgnoreSpace = false]
)
/* Output:
Table.FromRecords( {
[
CustomerID = 1,
FirstName1 = "Bob",
Phone = "555-1234",
CustomerStateID = 1,
FirstName2 = "Bob",
State = "TX"
],
[
CustomerID = 1,
FirstName1 = "Bob",
Phone = "555-1234",
CustomerStateID = 2,
FirstName2 = "bOB",
State = "CA"
],
[
CustomerID = 2,
FirstName1 = "Robert",
Phone = "555-4567",
CustomerStateID = null,
FirstName2 = null,
State = null
]
} )
*/
Related functions
Other functions related to Table.FuzzyJoin are:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy