I've a huge excel table (more than 100000 lines) and I need to find the values that appear according to a dropdown list.
So I've implemented a VLOOKUP funcion:
=IFERROR(VLOOKUP($D$1;'table'!A2:$O$100000;2;FALSE); "-")
But the problem is that the function keeps repeating the same value, so for exemple, if there's only one appearence of a specific data, the funcion will repeat it has long the funcion exists.
I want to change it so if the value only appears one time, the funcion will only return one value, if it appears two times, the funcion only return two values, while the rest of the data only shows a - sign.
Example:
