What I have :
- A table with columns (the column number has non unique numbers)
- Some numbers, but don't mind this, it is only because I wanted a spilled list
- A spilled list on F3 (the filter list), of any lenght
What I want :
- A Result table that only shows the rows whose number is in the spilled list.
Currently, the formula I used in Result table is :
=FILTER(Table1;(Table1[Number]=F3)+(Table1[Number]=F4))
The problem is that I need the spilled list to be as long as 10 or 20 cells, so my idea was not very efficient.
I tried =FILTER(Table1;(Table1[Number]=F3#)) but this doesn't work.
(I thought about SQL "IN" function, because if I could try for each cell of the column if it is IN the list, it would work?)
I also tried =XLOOKUP(F3#;Table1[Number];Table1) but it gives me only Bob and Billy, not Martin even though Martin has number 1 (I think because XLOOKUP only shows the first match for each value).
Using SQL "IN" Function in Excel don't work for what I want (because only I have a column and not just 1 cell).
Thank you very much for your time, if you need any additionnal information please ask !
