Forum Discussion
Anonymous
2 years agoNot applicable
SelectRows on Dynamic columnname
Hi, I would like to filter rows from a table based on a value in different columns. Here's an example of a table where I want to get the yellow column as extra column (or at least, the yellow col...
- 2 years ago
Use below formula in a custom column
if Table.ColumnNames(Source){List.PositionOf(List.Range(Record.ToList(_),0,3), [Filtervalue])} = [Filtercolumn] then "Yes" else "No"
Vijay_A_Verma
2 years agoMost Valuable Professional
Use below formula in a custom column
if Table.ColumnNames(Source){List.PositionOf(List.Range(Record.ToList(_),0,3), [Filtervalue])} = [Filtercolumn] then "Yes" else "No"Anonymous
2 years agoNot applicable
Thanx! thanx! thanx a lot. Got it working now. Great!