Forum Discussion
Ka_ChunL
May 20, 2026Copper Contributor
Counts+unique+filter
Hi, I have a problem when I use the following to count the job formula Is =counta(unique(filter($a:$a, ($b:$b=1)*($c:$c=2))) the formula is correct, however, I found an error if no data match...
- May 22, 2026
CONUNTA() counts all values, includes errors which are are also values of special type. Thus result is 1. As variant that could be
=IFNA( ROWS( UNIQUE( FILTER( $A:$A, ($B:$B=1) * ($C:$C=2), NA() ) ) ), 0)
SergeiBaklan
May 22, 2026Diamond Contributor
CONUNTA() counts all values, includes errors which are are also values of special type. Thus result is 1. As variant that could be
=IFNA( ROWS( UNIQUE( FILTER( $A:$A, ($B:$B=1) * ($C:$C=2), NA() ) ) ), 0)- Ka_ChunLMay 22, 2026Copper Contributor
Thank you so much. I found correct answer now : )