I have an outer table with "Name" and "Content" columns, I also have nested tables contained in the "Content" column
How do I add a new column in the nested tables using the value "Name" from the outer one?
If I add a new column in the outer using
= Table.AddColumn(Step-1,"NewColOut", each Table.AddColumn([Content],"FileName", (x)=> [Name]))
I have no problem, what if I want to transform "Content" without adding a new column in the outer one?
I tried Table.TransformColumns but to no avail, I am not able to bring in the "Name" value at the nested table level
any help would be greately appreciated

