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 fot your answer! I get the message that a value of type Record can't be converted to type Table (translated)... Value=[Record] Type=[Type].
- Anonymous2 years agoNot applicable
I had to change Source to the right language.. sorry, but the result is now 'No' on each row.