Forum Discussion
Olliame
Jun 30, 2022Copper Contributor
Filtering and Counting Question In Excel
Need help filtering data in an Excel spreadsheet. I can't seem to get the logic right in my formula. The worksheet includes many rows of data. There is a column of names (Column T) and I need to fil...
mtarler
Jul 01, 2022Silver Contributor
Try
=FILTER(T:T, ISNUMBER(MATCH(T:T,S:S,0)))
=FILTER(T:T, ISNUMBER(MATCH(T:T,S:S,0)))
- OlliameJul 01, 2022Copper ContributorThanks. I tried your suggestion, and it came back with a #CALC error. Perhaps there is a refinement that might help? I can certainly use the help!
- SergeiBaklanJul 01, 2022Diamond Contributor
- mtarlerJul 01, 2022Silver Contributor
try to limit the ranges and give a default if none found like this:
=FILTER(T1:T100, ISNUMBER(MATCH(T1:T100,S1:S100,0)),"none")