Hi All
I'm trying to get all fuzzy lookups within a row to help with analysis. This thread has proved very helpful
But I'm struggling to exactly implement the solution. I have attached a much smaller version of the table and my current code up to the merge and fuzzy match is below. Many thanks!
I'm trying to get all fuzzy lookups within a row to help with analysis. This thread has proved very helpful
Identify fuzzy matches in one column
Hello! I have a list of 20k names and I am trying to find the fuzzy duplicates on the same column Like: Company Waterfall Company Waterfll Company Waterfalls Ideally those 3 would be highlighted, marked with a 1 or something that allows for identification Any ideas? been looking for weeks...
www.mrexcel.com
But I'm struggling to exactly implement the solution. I have attached a much smaller version of the table and my current code up to the merge and fuzzy match is below. Many thanks!
Power Query:
let
Source = Excel.CurrentWorkbook(),
Table1 = Source{[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Table1,{{"Name1", type text}, {"Count1", type text}}),
#"Merged Queries" = Table.FuzzyNestedJoin(#"Changed Type", {"Name1"}, #"Changed Type", {"Name1"}, "Changed Type", JoinKind.LeftOuter, [IgnoreCase=true, IgnoreSpace=true, Threshold=0.85, SimilarityColumnName="Similarity"]),
#"Renamed Columns" = Table.RenameColumns(#"Merged Queries",{{"Changed Type", "Table"}})
in
#"Renamed Columns"