Forum Discussion
Anonymous
2 years agoNot applicable
Outer Left Join Power Query not returning joined matches
I am doing an outer left join in power query to bring a value from another table. Join is done fine even when i look at the table inside the cell is the value I want take a look a the image. ...
Syndicate_Admin
2 years agoAdministrator
That is indeed very bizarre behavior. I have no explanation for it but maybe Ben Gribaudo has.
I used an alternative code
#"Added Custom" = Table.AddColumn(#"Filas filtradas3", "Layout", (k)=> Table.SelectRows(Layout,each [Descripción]=k[Ubicacion])),
#"Expanded Layout" = Table.ExpandTableColumn(#"Added Custom", "Layout", {"Código Id"}, {"Código Id"})
in
#"Expanded Layout"
and that worked fine.