In column B
I've got the list of values of which some occur multiple times.
What I am trying to achieve is to list unique values of such list in column E
. For cell E3
I use the array formula like this:
{=IFERROR(INDEX($B$3:$B$20,MATCH(0,COUNTIF($E$2:E2, $B$3:$B$20), 1)),"")}
but I'm not sure how to add another layer to this formula which would drop all blank cells from B
. Now the formula treat blanks as the zero value and returns zero in the first row.
B
. But the alternative formula to exclude zero or any other chosen value in the result would be also neat :) – friedman