Forum Discussion
Jorglo
Mar 01, 2021Copper Contributor
Get all values from a column based on criteria
Hi, I have a table and I am trying to get ALL values (duplicated or not) from a column in a different sheet based on criteria. The criteria are the highlighted columns in the first image below. ...
SergeiBaklan
Mar 01, 2021Diamond Contributor
That could be
=FILTER(INDEX(Table1, SEQUENCE(ROWS(Table1)), IF($E$3="Time", {1,2}, {1,3})), COUNTIFS($C$3,Table1[CaseName]))
Jorglo
Mar 01, 2021Copper Contributor
Also, what if I had many more columns in he raw data and not just two?
Like the image below.
- SergeiBaklanMar 01, 2021Diamond Contributor
If you have list of columns to select like this
formula could be
=FILTER( INDEX(Table1, SEQUENCE(ROWS(Table1)), XMATCH( TRANSPOSE($E$3:INDEX($E$3:$E$10,COUNTA($E$3:$E$10))), Table1[#Headers])), COUNTIFS($C$3,Table1[CaseName]) )
Range E3:E10 is taken with some gap
- JorgloMar 01, 2021Copper Contributor
- SergeiBaklanMar 01, 2021Diamond Contributor
Jorglo , you are welcome, glad it helped.