I have a line as below in Power Query. So instead of referring it by name, I want it by position dynamically. Can someone help here, please
#"Filtered Part Desc" = Table.SelectRows(#"Removed Columns3", each
Text.Contains([part_desc], "ENG") or
Text.Contains([part_desc], "TRANS"))
I tried replacing [part_desc] by Table.ColumnNames(Promoted){6}, but it is not working