To get the expected results, I used Power Query Fuzzy Match but had to set the percentage at 60%
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Account name", type text}}),
#"Merged Queries" = Table.FuzzyNestedJoin(#"Changed Type", {"Account name"}, Table2, {"Account name 2"}, "Table2", JoinKind.LeftOuter, [IgnoreCase=true, IgnoreSpace=true, Threshold=0.6]),
#"Expanded Table2" = Table.ExpandTableColumn(#"Merged Queries", "Table2", {"Account name 2", "Account No."}, {"Account name 2", "Account No."})
in
#"Expanded Table2"
Bookmarks