I've got power query to show difference between tables A B, sometimes in one of them is extra space but inside is excatly the same but showing this is not equal and appear in my new table, could someone help me how to add function to ignore spaces
let
Source = Table.NestedJoin( Excel.CurrentWorkbook(){[Name="Table1"]}[Content], {"CU_PIRD", "Text"}, Excel.CurrentWorkbook(){[Name="Table2"]}[Content], {"CU_PIRD", "Text"}, "Source", JoinKind.LeftAnti)
in Source
for example table A:
Hello World
Table B:
Hello World
Contain same text with extra space, i want to void cases like this