I just discovered VSTACK, and I love the concept, but I'm running into problems using it.
for instance, in K1 I have
=FILTER(VSTACK(A2:A35,B2:B35,C2:C35,D2:D35), VSTACK(A2:A35,B2:B35,C2:C35,D2:D35)<>"")
and this works as expected
and in L1 I have
=UNIQUE(FILTER(K1#,COUNTIF(K1#,K1#)>1))
and this works as expected
but when I try to combine them in one formula, replacing "K1#" with the formula in K1, like this
=UNIQUE(FILTER(FILTER(VSTACK(A2:A35,B2:B35,C2:C35,D2:D35), VSTACK(A2:A35,B2:B35,C2:C35,D2:D35)<>""),COUNTIF(FILTER(VSTACK(A2:A35,B2:B35,C2:C35,D2:D35), VSTACK(A2:A35,B2:B35,C2:C35,D2:D35)<>""),FILTER(VSTACK(A2:A35,B2:B35,C2:C35,D2:D35), VSTACK(A2:A35,B2:B35,C2:C35,D2:D35)<>""))>1))
I get the error saying, "there's a problem with this formula." (I did try toggling the VSTACK arguments to absolute, as well as relative, with no better results.)
Similarly, I have a conditional formatting rule
=MATCH(A2,UNIQUE(FILTER($A$2:$A$35,COUNTIF($A$2:$A$35,$A$2:$A$35)>1)),0)=1
that works as expected, but when I try to replace $A$2:$A$35 with a simple VSTACK, like this
=MATCH(A2,UNIQUE(FILTER(VSTACK($A$2:$A$35,$B$2:$B$35,$C$2:$C$35,$D$2:$D$35),COUNTIF(VSTACK($A$2:$A$35,$B$2:$B$35,$C$2:$C$35,$D$2:$D$35),VSTACK($A$2:$A$35,$B$2:$B$35,$C$2:$C$35,$D$2:$D$35))>1)),0)=1
I get the same error.
What am I missing?
Thanks!
for instance, in K1 I have
=FILTER(VSTACK(A2:A35,B2:B35,C2:C35,D2:D35), VSTACK(A2:A35,B2:B35,C2:C35,D2:D35)<>"")
and this works as expected
and in L1 I have
=UNIQUE(FILTER(K1#,COUNTIF(K1#,K1#)>1))
and this works as expected
but when I try to combine them in one formula, replacing "K1#" with the formula in K1, like this
=UNIQUE(FILTER(FILTER(VSTACK(A2:A35,B2:B35,C2:C35,D2:D35), VSTACK(A2:A35,B2:B35,C2:C35,D2:D35)<>""),COUNTIF(FILTER(VSTACK(A2:A35,B2:B35,C2:C35,D2:D35), VSTACK(A2:A35,B2:B35,C2:C35,D2:D35)<>""),FILTER(VSTACK(A2:A35,B2:B35,C2:C35,D2:D35), VSTACK(A2:A35,B2:B35,C2:C35,D2:D35)<>""))>1))
I get the error saying, "there's a problem with this formula." (I did try toggling the VSTACK arguments to absolute, as well as relative, with no better results.)
Similarly, I have a conditional formatting rule
=MATCH(A2,UNIQUE(FILTER($A$2:$A$35,COUNTIF($A$2:$A$35,$A$2:$A$35)>1)),0)=1
that works as expected, but when I try to replace $A$2:$A$35 with a simple VSTACK, like this
=MATCH(A2,UNIQUE(FILTER(VSTACK($A$2:$A$35,$B$2:$B$35,$C$2:$C$35,$D$2:$D$35),COUNTIF(VSTACK($A$2:$A$35,$B$2:$B$35,$C$2:$C$35,$D$2:$D$35),VSTACK($A$2:$A$35,$B$2:$B$35,$C$2:$C$35,$D$2:$D$35))>1)),0)=1
I get the same error.
What am I missing?
Thanks!