Jul 19 2023 07:25 AM
Hi all expertises,
Last time, I learnt the following formula to count the unique by using filter under single criteria.
Formula is =count(unique(filter(A:A, B:B="correct"). The formula is correct and I can get the correct answer.
Now, I need to count the unique again but under multiple criterias from different columes. May I ask your help again? thanks
Jul 19 2023 08:04 AM
SolutionYou can multiply the conditions:
=COUNTA(UNIQUE(FILTER(A:A, (B:B="correct")*(C:C=37)*(D:D>25))
Jul 19 2023 03:50 PM