Forum Discussion
daved2424
Jan 30, 2023Copper Contributor
Creating comma deliniated list from filtered rows in a table
Hello I have a table where column 1 is an index number. I then filter this table based on the values in another column. I want to be able to return all the values from the index column into a...
OliverScheurich
Jan 30, 2023Gold Contributor
- daved2424Jan 30, 2023Copper ContributorUnfortunately not as that requires hard-coding the filter value into the formula. I need it to dynamically update as filters are applied.
- OliverScheurichJan 30, 2023Gold Contributor
=TEXTJOIN(",",TRUE,FILTER(Tabelle2[index],Tabelle2[value]>17))
If you work with a dynamic table you can reference dynamic columns instead of hard-coded ranges.
- daved2424Jan 30, 2023Copper ContributorThank you. I appreciate what you are trying to say, however it is the ">17" where I have the problem. You are essentially hardcoding the paramters of the filter into the formula. I want to parameters of the filter to be the rows that are currently visible.