I have a column of data. I want to find all the values that do not equal any values from an array, one by one.
I tried defining a named value which was an array like this
={"value1","value2","value3","value4","value5"}
..and so on.
Which excel functions can I use to find values that are not contained in the array.
And why is the function not iterating through the array? It's only testing the first index.
I tried this:
{=NOT(X8=NamedValue)}
And =MATCH(NamedValue, X3,0)
Both only test the first value in the array.
lookup_valuethough I still can't get excel to iterate past the first value.