Forum Discussion
GENERATE LIST BASED ON CELL VALUE
- Jun 02, 2021
I've attached one solution. It requires the most recent version of Excel, as it makes use of the Dynamic Array function FILTER as well as the function INDIRECT in order to write just a single formula that could be copied across various columns.
Here's the simpler version of the formula: =FILTER(Table1[Ticket nr.],Table1[James]="X")
And here's the more versatile: =FILTER(Table1[Ticket nr.],INDIRECT("Table1["&I1&"]")="X") where cell I1 contains the value "James"
I also created your table as an official "Excel Table" to make it easier.
I've attached one solution. It requires the most recent version of Excel, as it makes use of the Dynamic Array function FILTER as well as the function INDIRECT in order to write just a single formula that could be copied across various columns.
Here's the simpler version of the formula: =FILTER(Table1[Ticket nr.],Table1[James]="X")
And here's the more versatile: =FILTER(Table1[Ticket nr.],INDIRECT("Table1["&I1&"]")="X") where cell I1 contains the value "James"
I also created your table as an official "Excel Table" to make it easier.
- RiaDreyerJun 03, 2021Copper Contributor
thank you so very much!!!
this was most helpful