Forum Discussion
benn
7 years agoNew Member
Power Query - How to resolve variable/column scope, or how to reference column inside a table.
In Power BI, I have a table that has a column of tables. See screenshot below: Inside of the column called ThirdTable, each has a table that has the final information I’d like to gra...
- 7 years ago
benn,
You may add step below.
= Table.TransformColumns(#"Added Custom", {"ThirdTable", each Table.SelectRows(_, each ([Name] = "Title"))})
v-chuncz-msft
7 years agoCommunity Support
benn,
You may add step below.
= Table.TransformColumns(#"Added Custom", {"ThirdTable", each Table.SelectRows(_, each ([Name] = "Title"))})