Hi all,
I have something similar to the following tables:
Table1:
...
Table2:
...
And would like to add [Weight] as a new column to table2 based off [Product] in table2 starting with [Product] in table1. I have the following but can't seem to get it to work:
Table.SelectRows(
table1[Product],
Text.StartsWith([Product],table1[Product])
)
Any help would be greatly appreciated
Thank you